using Chloe.Annotations; namespace WorkerSynReport.Data; public partial class Report_WetMixer_Detail { /// /// 主键标识 /// [Column(IsPrimaryKey = true)] [AutoIncrement] public int objId { get; set; } /// /// 动作 /// public int? actCode { get; set; } public double? actTolerence { get; set; } /// /// mix编号 /// public double? actWeight { get; set; } /// /// 设备编号 /// public int? eqNo { get; set; } /// /// 批次 /// public int? mixBatch { get; set; } /// /// 速度 /// public double? mixSpeed { get; set; } /// /// 步号 /// public int? mixStep { get; set; } /// /// 温度 /// public double? mixTemp { get; set; } /// /// 时间 /// public int? mixTime { get; set; } /// /// 记录时间 /// public DateTime? recordTime { get; set; } /// /// 报表标识 /// public string reportId { get; set; } = string.Empty; }