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