You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
3.6 KiB
C#
158 lines
3.6 KiB
C#
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_lyupload")]
|
|
public class LyUpLoad
|
|
{
|
|
/// <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 = "crosswiseArea")]
|
|
|
|
public string crosswiseArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 纵向膜区
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "erectArea")]
|
|
|
|
public string erectArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物理面向
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "materialFace")]
|
|
|
|
public string materialFace { get; set; }
|
|
|
|
/// <summary>
|
|
/// S面数据
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "sx01")]
|
|
|
|
public string sx01 { get; set; }
|
|
|
|
/// <summary>
|
|
/// S面数据
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "sx02")]
|
|
|
|
public string sx02 { get; set; }
|
|
|
|
/// <summary>
|
|
/// B面数据
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "bx01")]
|
|
|
|
public string bx01 { get; set; }
|
|
|
|
/// <summary>
|
|
/// B面数据
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "bx02")]
|
|
|
|
public string bx02 { 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_targetcws")]
|
|
public string s_targetcws { get; set; }
|
|
}
|
|
}
|