using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.Entity.UpLoad
{
///
/// 冷压特征数据
///
[SugarTable("pro_lyupload")]
public class LyUpLoad
{
///
/// 主键标识
///
[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 = "crosswiseArea")]
public string crosswiseArea { get; set; }
///
/// 纵向膜区
///
[SugarColumn(ColumnName = "erectArea")]
public string erectArea { get; set; }
///
/// 物理面向
///
[SugarColumn(ColumnName = "materialFace")]
public string materialFace { get; set; }
///
/// S面数据
///
[SugarColumn(ColumnName = "sx01")]
public string sx01 { get; set; }
///
/// S面数据
///
[SugarColumn(ColumnName = "sx02")]
public string sx02 { get; set; }
///
/// B面数据
///
[SugarColumn(ColumnName = "bx01")]
public string bx01 { get; set; }
///
/// B面数据
///
[SugarColumn(ColumnName = "bx02")]
public string bx02 { 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_targetcws")]
public string s_targetcws { get; set; }
}
}