using Chloe.Annotations; namespace WorkerSynReport.Data; public partial class Report_Gel { [Column(IsPrimaryKey = true)] [AutoIncrement] public int objId { get; set; } /// /// 车次 /// public int? Batch { get; set; } public int? gelNo { 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; }