using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MaterialTraceability.Entity.UpLoad { /// /// 收卷记录 /// [SugarTable("pro_downrecord")] public class DownRecord { /// /// 主键标识 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int id { get; set; } /// /// 客户端记录Id /// [SugarColumn(ColumnName = "clientId")] public string clientId { get; set; } /// /// 设备编号 /// [SugarColumn(ColumnName = "machineId")] public int machineId { get; set; } /// /// 资源编号 /// [SugarColumn(ColumnName = "resource")] public String resource { get; set; } /// /// 位置编号 /// [SugarColumn(ColumnName = "positionId")] public int positionId { get; set; } /// /// rfid条码 /// [SugarColumn(ColumnName = "rfidStr")] public String rfidStr { get; set; } /// /// SFC编码 /// [SugarColumn(ColumnName = "sfcStr")] public String sfcStr { get; set; } /// /// EA数量 /// [SugarColumn(ColumnName = "eaValue")] public int eaValue { get; set; } /// /// 涂布膜卷 /// [SugarColumn(ColumnName = "downMaterialId")] public String downMaterialId { get; set; } /// /// 是否生产 /// [SugarColumn(ColumnName = "is_Production")] public int isProduction { get; set; } /// /// 是否完工 /// [SugarColumn(ColumnName = "is_Finish")] public int isFinish { get; set; } /// /// 记录时间 /// [SugarColumn(ColumnName = "recordTime")] public String recordTime { get; set; } /// /// 开始时间 /// [SugarColumn(ColumnName = "begin_Time")] public String beginTime { get; set; } /// /// 结束时间 /// [SugarColumn(ColumnName = "end_Time")] public String endTime { get; set; } /// /// 记录生产者 /// [SugarColumn(ColumnName = "product_user")] public String productUser { get; set; } } }