using SqlSugar; namespace MES.Service.Modes; /// /// 员工信息表 /// [SugarTable("MES_STAFF")] public class MesStaff { /// /// ID /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } /// /// 员工编码 /// [SugarColumn(ColumnName = "STAFF_NO")] public string StaffNo { get; set; } /// /// 员工姓名 /// [SugarColumn(ColumnName = "STAFF_NAME")] public string StaffName { get; set; } /// /// 部门编码 /// [SugarColumn(ColumnName = "DEPARTMENT_NO")] public string DepartmentNo { get; set; } /// /// 部门名称 /// [SugarColumn(ColumnName = "DEPARTMENT_NAME")] public string DepartmentName { get; set; } /// /// 岗位编码 /// [SugarColumn(ColumnName = "POSITION_CODE")] public string PositionCode { get; set; } /// /// 岗位名称 /// [SugarColumn(ColumnName = "POSITION_NAME")] public string PositionName { get; set; } /// /// 手机号 /// [SugarColumn(ColumnName = "PHONE_NUMBER")] public string PhoneNumber { get; set; } /// /// 任岗开始日期 /// [SugarColumn(ColumnName = "START_DATE")] public DateTime? StartDate { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "REMARK")] public string Remark { get; set; } /// /// 自定义字段1 /// [SugarColumn(ColumnName = "REMARK1")] public string Remark1 { get; set; } /// /// 自定义字段2 /// [SugarColumn(ColumnName = "REMARK2")] public string Remark2 { get; set; } /// /// 自定义字段3 /// [SugarColumn(ColumnName = "REMARK3")] public string Remark3 { get; set; } /// /// 自定义字段4 /// [SugarColumn(ColumnName = "REMARK4")] public string Remark4 { get; set; } /// /// 自定义字段5 /// [SugarColumn(ColumnName = "REMARK5")] public string Remark5 { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATE_BY")] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATE_DATE")] public DateTime? CreateDate { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "LASTUPDATE_BY")] public string LastupdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "LASTUPDATE_DATE")] public DateTime? LastupdateDate { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "MEMO")] public string Memo { get; set; } /// /// 生产线 /// [SugarColumn(ColumnName = "LINE_NO")] public string LineNo { get; set; } /// /// 生产员工标识 /// [SugarColumn(ColumnName = "WORK_MK")] public decimal? WorkMk { get; set; } /// /// 是否禁用 /// [SugarColumn(ColumnName = "FFORBID_STATUS")] public string FforbidStatus { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } /// /// 使用組織 /// [SugarColumn(ColumnName = "FSubsidiary")] public string? FSubsidiary { get; set; } /// /// 創建組織 /// [SugarColumn(ColumnName = "Fumbrella")] public string? Fumbrella { get; set; } }