using SqlSugar; namespace MES.Service.Modes; /// /// [SugarTable("MES_EQ_KEEPS_TYPE02")] public class MesEqKeepsType02 { /// /// 子表ID /// [SugarColumn(ColumnName = "ID")] public long Id { get; set; } /// /// 设备名称 /// [SugarColumn(ColumnName = "EQ_NAME")] public string EqName { get; set; } /// /// 设备编号 /// [SugarColumn(ColumnName = "EQ_NO")] public string EqNo { get; set; } /// /// 制作人 /// [SugarColumn(ColumnName = "FNAME")] public string Fname { get; set; } /// /// 制作时间 /// [SugarColumn(ColumnName = "FDATE")] public DateTime? Fdate { get; set; } /// /// 保养原因 /// [SugarColumn(ColumnName = "EQ_NATURE")] public string EqNature { get; set; } /// /// 保养方法 /// [SugarColumn(ColumnName = "EQ_MAIN")] public string EqMain { get; set; } /// /// 保养结果 /// [SugarColumn(ColumnName = "EQ_END")] public string EqEnd { get; set; } /// /// 保养单号 /// [SugarColumn(ColumnName = "PLAN_NO")] public string PlanNo { get; set; } /// /// 表主键ID /// [SugarColumn(ColumnName = "PID")] public decimal? Pid { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "MEMO")] public string Memo { get; set; } }