using Chloe.Annotations; namespace WorkerSynReport.Data; /// /// 干混机报表 /// public partial class Report_Dry { /// /// 主键标识 /// [Column(IsPrimaryKey = true)] [AutoIncrement] public int objId { get; set; } /// /// 车次 /// public int? Batch { get; set; } /// /// 是第几台干混机 /// public int? dryNo { get; set; } /// /// 计划编码 /// public int? planCode { get; set; } /// /// 计划名称 /// public string planName { get; set; } = string.Empty; /// /// 设备编号 /// public int? recipeCode { get; set; } /// /// 配方名称 /// public string recipeName { get; set; } = string.Empty; /// /// 记录时间 /// public DateTime? recordTime { get; set; } /// /// 报表标识 /// public string reportId { get; set; } = string.Empty; }