using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MaterialTraceability.Entity.UpLoad { /// /// 模切特征数据 /// [SugarTable("pro_mqupload")] public class MqUpLoad { /// /// 主键标识 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int id { get; set; } /// /// 客户端记录Id /// [SugarColumn(ColumnName = "clientId")] public string clientId { get; set; } /// /// 资源号 /// [SugarColumn(ColumnName = "resource")] public string resource { get; set; } /// /// SFC /// [SugarColumn(ColumnName = "sfcStr")] public string sfcStr { get; set; } /// /// 工序 /// [SugarColumn(ColumnName = "operation")] public string operation { get; set; } /// /// 数据组 /// [SugarColumn(ColumnName = "dcGroup")] public string dcGroup { get; set; } /// /// 放卷方向 /// [SugarColumn(ColumnName = "upDirection")] public string upDirection { get; set; } /// /// 收卷方向 /// [SugarColumn(ColumnName = "downDirection")] public string downDirection { get; set; } /// /// 收卷轴 /// [SugarColumn(ColumnName = "downPosition")] public string downPosition { get; set; } /// /// 是否首卷 /// [SugarColumn(ColumnName = "firstArticle")] public string firstArticle { get; set; } /// /// 物理面向 /// [SugarColumn(ColumnName = "mqMaterialFace")] public string mqMaterialFace { get; set; } /// /// 卷绕理论方向 /// [SugarColumn(ColumnName = "jrDirection")] public string jrDirection { get; set; } /// /// S面数据 /// [SugarColumn(ColumnName = "scw")] public string scw { get; set; } /// /// B面数据 /// [SugarColumn(ColumnName = "bcw")] public string bcw { get; set; } /// /// 是否成功 /// [SugarColumn(ColumnName = "is_success")] public int is_success { get; set; } /// /// MES返回信息 /// [SugarColumn(ColumnName = "mesReturnInfo")] public string mesReturnInfo { get; set; } /// /// 记录时间 /// [SugarColumn(ColumnName = "recordTime")] public string recordTime { get; set; } [SugarColumn(ColumnName = "positionId")] public int positionId { get; set; } [SugarColumn(ColumnName = "s_targetcw")] public string s_targetcw { get; set; } } }