using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace MES.Service.Modes { /// /// 工单报工信息表 /// [SugarTable("MES_SCGD_GX")] public class MesScgdGx { /// /// /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal? Id { get; set; } /// /// 生产工单 /// [SugarColumn(ColumnName = "TASK_NO")] public string TaskNo { get; set; } /// /// 生产条码 /// [SugarColumn(ColumnName = "ITEM_BARCODE")] public string ItemBarcode { get; set; } /// /// 条码数量 /// [SugarColumn(ColumnName = "QUANTITY")] public decimal? Quantity { get; set; } /// /// 报工数量 /// [SugarColumn(ColumnName = "QUANT")] public decimal? Quant { get; set; } /// /// 工序 /// [SugarColumn(ColumnName = "GX")] public string Gx { get; set; } /// /// 工序ID /// [SugarColumn(ColumnName = "GX_ID")] public string GxId { get; set; } /// /// 报工人 /// [SugarColumn(ColumnName = "CREATE_BY")] public string CreateBy { get; set; } /// /// 报工时间 /// [SugarColumn(ColumnName = "CREATE_BY_DATE")] public DateTime? CreateByDate { get; set; } /// /// 到货单号/入库单号 /// [SugarColumn(ColumnName = "BILL_NO")] public string BillNo { get; set; } /// /// 班次 /// [SugarColumn(ColumnName = "F_BC")] public string FBc { get; set; } /// /// 工序完毕标识 /// [SugarColumn(ColumnName = "GX_FLAE")] public decimal? GxFlae { get; set; } /// /// 报工时间(年月日) /// [SugarColumn(ColumnName = "CREATE_BY1")] public string CreateBy1 { get; set; } /// /// 拆分数 /// [SugarColumn(ColumnName = "C_QUANT")] public decimal? CQuant { get; set; } /// /// 开工时间 /// [SugarColumn(ColumnName = "KG_TIME")] public string KgTime { get; set; } /// /// 完工时间 /// [SugarColumn(ColumnName = "WG_TIME")] public string WgTime { get; set; } /// /// 机台 /// [SugarColumn(ColumnName = "JT")] public string Jt { get; set; } /// /// 报工人编码 /// [SugarColumn(ColumnName = "CREATE_CODE")] public string CreateCode { get; set; } /// /// /// [SugarColumn(ColumnName = "CHECK_FLAG")] public string CheckFlag { get; set; } } }