刘磊
2025-09-01 0930e25eb34dadc89ca18a98d21c7fceabae1bea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models
{
    /// <summary>
    /// 规则表
    ///</summary>
    [SugarTable("Dt_Rule")]
    public class Dt_Rule : BaseEntity
    {
        
     
        /// <summary>
        /// 备  注:规则ID
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName= "ID", IsPrimaryKey = true,IsIdentity = true) ]
        public int ID  { get; set;  } 
     
        /// <summary>
        /// 备  注:规则编码
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName= "RuleCode") ]
        public string RuleCode  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:规则名称
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName= "RuleName") ]
        public string RuleName  { get; set;  } 
     
        /// <summary>
        /// 备  注:规则类型
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName= "RuleType") ]
        public string? RuleType  { get; set;  } 
     
        /// <summary>
        /// 备  注:规则描述
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName= "RuleDesc") ]
        public string? RuleDesc  { get; set;  } 
     
        /// <summary>
        /// 备  注:规则状态
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName= "EnableStatus") ]
        public int? EnableStatus  { get; set;  } 
    }
    
}