展杰
2024-08-07 e749bf256738008aa9283c3f8ac4241b374191a0
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
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 = "FSubsidiary")]
    public string? FSubsidiary { get; set; }
    /// <summary>
    ///     創建組織
    /// </summary>
    [SugarColumn(ColumnName = "Fumbrella")]
    public string? Fumbrella { get; set; }
 
 
    [SugarColumn(IsIgnore = true)] public string? Type { get; set; }
}