xwt
14 小时以前 91512ffa0b977624ef127658e6aadf484ccfa6e2
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
using SqlSugar;
 
namespace MES.Service.Modes;
 
/// <summary>
///     岗位信息
/// </summary>
[SugarTable("MES_POSITION")]
public class MesPosition
{
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)]
    public decimal Id { get; set; }
 
    /// <summary>
    ///     岗位编号
    /// </summary>
    [SugarColumn(ColumnName = "POSITION_ID")]
    public string? PositionId { get; set; }
 
    /// <summary>
    ///     岗位名称
    /// </summary>
    [SugarColumn(ColumnName = "POSITION_NAME")]
    public string? PositionName { get; set; }
 
    /// <summary>
    ///     岗位描述
    /// </summary>
    [SugarColumn(ColumnName = "POSITION_DESCRIPTION")]
    public string? PositionDescription { get; set; }
 
    /// <summary>
    ///     所属部门
    /// </summary>
    [SugarColumn(ColumnName = "DEPARTMENT")]
    public string? Department { get; set; }
 
    /// <summary>
    ///     建立日期
    /// </summary>
    [SugarColumn(ColumnName = "CREATION_DATE")]
    public DateTime? CreationDate { get; set; }
 
    /// <summary>
    ///     禁用人
    /// </summary>
    [SugarColumn(ColumnName = "DISABLED_BY")]
    public string? DisabledBy { get; set; }
 
    /// <summary>
    ///     禁用日期
    /// </summary>
    [SugarColumn(ColumnName = "DISABLED_DATE")]
    public DateTime? DisabledDate { get; set; }
 
    /// <summary>
    ///     禁用状态  A 启用 B禁用
    /// </summary>
    [SugarColumn(ColumnName = "FFORBIDSTATUS")]
    public string? Fforbidstatus { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "REMARK1")]
    public string? Remark1 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "REMARK2")]
    public string? Remark2 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "REMARK3")]
    public string? Remark3 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "REMARK4")]
    public string? Remark4 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "REMARK5")]
    public string? Remark5 { get; set; }
 
 
    [SugarColumn(IsIgnore = true)] public string? Type { get; set; }
 
    /// <summary>
    ///     接口字段调整:新增创建组织id和使用组织id字段。
    /// </summary>
    /// <remarks>
    ///     修改人:
    ///     <池南骏>
    ///         修改日期:<2024-12-25>
    ///         修改说明:
    ///         - 原代码:空
    ///         - 修改后:
    ///         [SugarColumn(ColumnName = "USE_ORG")]
    ///         public decimal? UseOrg { get; set; }
    ///         [SugarColumn(ColumnName = "CREATE_ORG")]
    ///         public decimal? CreateOrg { get; set; }
    /// </remarks>
    /// <summary>
    ///     使用组织
    /// </summary>
    [SugarColumn(ColumnName = "CREATE_ORG")]
    public decimal? CreateOrg { get; set; }
 
    /// <summary>
    ///     创建组织
    /// </summary>
    [SugarColumn(ColumnName = "USE_ORG")]
    public decimal? UseOrg { get; set; }
 
    /// <summary>
    ///     接口字段调整:新增 ERP数据状态。
    /// </summary>
    /// <remarks>
    ///     修改人:
    ///     <池南骏>
    ///         修改日期:<2024-12-31>
    ///         修改说明:
    ///         - 原代码:空
    ///         - 修改后:
    /// </remarks>
    /// <summary>
    ///     ERP数据状态
    /// </summary>
    [SugarColumn(ColumnName = "FDOCUMENTSTATUS")]
    public string? FDOCUMENTSTATUS { get; set; }
}