You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace BPA.MES.Base.Application.Entitys
- {
- /// <summary>
- /// 名 称 :工单状态
- /// 创 建 人 :yangxiao
- /// 创建时间 :2023/7/18 18:07:21
- /// 描 述 :
- /// </summary>
- [SugarTable("work_info_status")]
- public class Pztj_WorkInfoStatusEntity : DEntityBase
- {
- /// <summary>
- /// 工单Id
- /// </summary>
- [SugarColumn(IsNullable = true)]
- public string WorkId { get; set; }
- /// <summary>
- /// 工单状态
- /// </summary>
- [SugarColumn(IsNullable = true)]
- public WorkOrderStatusEnum? Status { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [SugarColumn(IsNullable = true)]
- public DateTime CreateTime { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- [SugarColumn(IsNullable = true)]
- public string Remark { get; set; }
- }
- }
|