using System; using System.Collections.Generic; using System.Linq; using SqlSugar; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { /// /// 规则表 /// [SugarTable("Dt_Rule")] public class Dt_Rule : BaseEntity { /// /// 备 注:规则ID /// 默认值: /// [SugarColumn(ColumnName= "ID", IsPrimaryKey = true,IsIdentity = true) ] public int ID { get; set; } /// /// 备 注:规则编码 /// 默认值: /// [SugarColumn(ColumnName= "RuleCode") ] public string RuleCode { get; set; } = null!; /// /// 备 注:规则名称 /// 默认值: /// [SugarColumn(ColumnName= "RuleName") ] public string RuleName { get; set; } /// /// 备 注:规则类型 /// 默认值: /// [SugarColumn(ColumnName= "RuleType") ] public string? RuleType { get; set; } /// /// 备 注:规则描述 /// 默认值: /// [SugarColumn(ColumnName= "RuleDesc") ] public string? RuleDesc { get; set; } /// /// 备 注:规则状态 /// 默认值: /// [SugarColumn(ColumnName= "EnableStatus") ] public int? EnableStatus { get; set; } } }