using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 模具维修任务表 /// [SugarTable("tool_mold_maintain_task")] public partial class ToolMoldMaintainTask : BaseEntity { public ToolMoldMaintainTask() { id = SnowflakeIdHelper.NextId(); } /// /// 维修单号 /// public string? code { get; set; } /// /// 模具id /// public string? mold_id { get; set; } /// /// 报修人 /// public string? create_id { get; set; } /// /// 保修时间 /// public DateTime? create_time { get; set; } /// /// 维修人 /// public string? modify_id { get; set; } /// /// 维修开始时间 /// public DateTime? modify_strat_time { get; set; } /// /// 维修结束时间 /// public DateTime? modify_end_time { get; set; } /// /// 维修单状态 /// public string status { get; set; } public string? name { get; set; } public string? attachment { get; set; } public string? describe { get; set; } public int is_finish { get; set; } public string? wxattachment { get; set; } public string? wxdescribe { get; set; } /// /// 复核 1 通过 2 不通过 /// public string repeat_result { get; set; } /// /// 复核结果描述 /// public string repeat_descrip { get; set; } /// /// 复核人 /// public string repeat_user_id { get; set; } /// /// 复核时间 /// public DateTime? repeat_time { get; set; } /// /// 工时(小时) /// public decimal cost_work_time { get; set; } /// /// 是否复核 /// public int is_repeat { get; set; } /// /// 复核人 /// public string repeater { get; set; } /// /// 是否报废 /// public int is_scrap { get; set; } /// /// 报废穴数 /// public int scrap_qty { get; set; } }