using SqlSugar; namespace NewPdaSqlServer.entity; /// /// 报工条码表 /// [SugarTable("MES_WORK_PROD_C_DETAILS")] public class MesWorkProdCDetails { /// /// 唯一标识符 /// 默认值: (newid()) /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 报工单号 /// [SugarColumn(ColumnName = "bill_no")] public string BillNo { get; set; } /// /// 报工条码 /// [SugarColumn(ColumnName = "item_barcode")] public string ItemBarcode { get; set; } /// /// 数量 /// [SugarColumn(ColumnName = "quantity")] public int? Quantity { get; set; } /// /// [SugarColumn(ColumnName = "company")] public string Company { get; set; } /// /// [SugarColumn(ColumnName = "factory")] public string Factory { get; set; } /// /// [SugarColumn(ColumnName = "create_by")] public string CreateBy { get; set; } /// /// [SugarColumn(ColumnName = "create_date")] public DateTime? CreateDate { get; set; } /// /// [SugarColumn(ColumnName = "lastupdate_by")] public string LastupdateBy { get; set; } /// /// [SugarColumn(ColumnName = "lastupdate_date")] public DateTime? LastupdateDate { get; set; } /// /// 物料编号 /// [SugarColumn(ColumnName = "item_no")] public string ItemNo { get; set; } /// /// 派工单号 /// [SugarColumn(ColumnName = "pbill_no")] public string PbillNo { get; set; } /// /// 最后工序 /// [SugarColumn(ColumnName = "work_last")] public decimal? WorkLast { get; set; } /// /// 丝印次数 /// [SugarColumn(ColumnName = "silk_pqty")] public decimal? SilkPqty { get; set; } /// /// 派工从表ID /// [SugarColumn(ColumnName = "silk_id")] public decimal? SilkId { get; set; } /// /// [SugarColumn(ColumnName = "silk")] public string Silk { get; set; } /// /// 报工员工 /// [SugarColumn(ColumnName = "bg_yg")] public string? BgYg { get; set; } /// /// 报工员工 /// [SugarColumn(ColumnName = "mes_work_prod_id")] public Guid? MesWorkProdId { get; set; } }