cdk
23 小时以前 d016d7ff02586fb9535baef4916cd339e18c7867
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
using SqlSugar;
 
namespace NewPdaSqlServer.entity;
 
[SugarTable("MES_SUPPSCORE")]
public class MesSuppSc
{
    /// <summary>
    ///     默认值: (newid())
    /// </summary>
    [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)]
    public Guid ID { get; set; }
 
    [SugarColumn(ColumnName = "SuppDate")]
    public string? SuppDate { get; set; }
 
    [SugarColumn(ColumnName = "SuppName")]
    public string? SuppName { get; set; }
 
    [SugarColumn(ColumnName = "SuppNum")]
    public decimal? SuppNum { get; set; }
 
 
}
 
[SugarTable("MES_SUPPSCORE_DETAIL")]
public class MesSuppScDetail
{
    [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)]
    public Guid ID { get; set; }
 
    // 外键关联主表 MES_SUPPSCORE.ID
    [SugarColumn(ColumnName = "PID")]
    public Guid PID { get; set; }
 
    // 项目一级(xm1)
    [SugarColumn(ColumnName = "XM1")]
    public string? XM1 { get; set; }
 
    // 项目二级(xm2)
    [SugarColumn(ColumnName = "XM2")]
    public string? XM2 { get; set; }
 
    // 得分(dykhdf)
    [SugarColumn(ColumnName = "DYKHDF")]
    public decimal? DYKHDF { get; set; }
}