namespace BPA.MES.Base.Application.Entitys { /// /// 名 称 :工单状态 /// 创 建 人 :yangxiao /// 创建时间 :2023/7/18 18:07:21 /// 描 述 : /// [SugarTable("work_info_status")] public class Pztj_WorkInfoStatusEntity : DEntityBase { /// /// 工单Id /// [SugarColumn(IsNullable = true)] public string WorkId { get; set; } /// /// 工单状态 /// [SugarColumn(IsNullable = true)] public WorkOrderStatusEnum? Status { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true)] public DateTime CreateTime { get; set; } /// /// 备注 /// [SugarColumn(IsNullable = true)] public string Remark { get; set; } } }