111
啊鑫
2025-01-22 eb662f5360e6e2c3d6972f4921bc9bd526d81913
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
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
 
namespace MES.Service.Modes
{
    /// <summary>
    /// 
    ///</summary>
    [SugarTable("EMPLOYEE_INFO")]
    public class EmployeeInfo
    {
        /// <summary>
        /// SEQ_EMP 
        ///</summary>
        [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)]
        public decimal Id { get; set; }
 
        /// <summary>
        /// 职工工号 
        ///</summary>
        [SugarColumn(ColumnName = "EMPLOYEE_NO")]
        public string? EmployeeNo { get; set; }
 
        /// <summary>
        /// 职工姓名 
        ///</summary>
        [SugarColumn(ColumnName = "EMPLOYEE_NAME")]
        public string? EmployeeName { get; set; }
 
        /// <summary>
        /// 部门编码 
        ///</summary>
        [SugarColumn(ColumnName = "DEPARTMENT_CODE")]
        public string? DepartmentCode { get; set; }
 
        /// <summary>
        /// 业务员类型 
        ///</summary>
        [SugarColumn(ColumnName = "SALESMAN_TYPE")]
        public string? SalesmanType { get; set; }
 
        /// <summary>
        /// 单据状态 
        ///</summary>
        [SugarColumn(ColumnName = "DOCUMENT_STATUS")]
        public string? DocumentStatus { get; set; }
 
        /// <summary>
        /// 是否禁用 
        ///</summary>
        [SugarColumn(ColumnName = "IS_DISABLED")]
        public string? IsDisabled { get; set; }
 
        /// <summary>
        /// 组织 
        ///</summary>
        [SugarColumn(ColumnName = "ORGANIZATION")]
        public string? Organization { get; set; }
    }
}