using Chloe.Annotations; namespace WorkerSynReport.Data; /// /// 干混机报表 /// public partial class Report_GelDoser_Detail { /// /// 主键标识 /// [Column(IsPrimaryKey = true)] [AutoIncrement] public int objId { get; set; } /// /// 实际公差 /// public double? actToLer { get; set; } /// /// 实际重量 /// public double? actValue { get; set; } /// /// 批次号 /// public int? batch { get; set; } /// /// 设备编号 /// public int? eqNo { get; set; } /// /// 1 糊化机 2 hotWater 3 coolWater /// public int? kinds { get; set; } /// /// 物料代码 /// public int? matCode { get; set; } /// /// 记录时间 /// public DateTime? recordTime { get; set; } /// /// 报表标识 /// public string reportId { get; set; } = string.Empty; /// /// 设定公差 /// public double? setToler { get; set; } /// /// 设定重量 /// public double? setValue { get; set; } }