using SqlSugar; namespace MES.Service.Modes; /// /// [SugarTable("EMPLOYEE_INFO")] public class EmployeeInfo { /// /// SEQ_EMP /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } /// /// 职工工号 /// [SugarColumn(ColumnName = "EMPLOYEE_NO")] public string? EmployeeNo { get; set; } /// /// 职工姓名 /// [SugarColumn(ColumnName = "EMPLOYEE_NAME")] public string? EmployeeName { get; set; } /// /// 部门编码 /// [SugarColumn(ColumnName = "DEPARTMENT_CODE")] public string? DepartmentCode { get; set; } /// /// 业务员类型 /// [SugarColumn(ColumnName = "SALESMAN_TYPE")] public string? SalesmanType { get; set; } /// /// 单据状态 /// [SugarColumn(ColumnName = "DOCUMENT_STATUS")] public string? DocumentStatus { get; set; } /// /// 是否禁用 /// [SugarColumn(ColumnName = "IS_DISABLED")] public string? IsDisabled { get; set; } /// /// 组织 /// [SugarColumn(ColumnName = "ORGANIZATION")] public string? Organization { get; set; } }