using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.Entity.DAO
{
///
/// 卷轴信息
///
[SugarTable("Pro_ShaftInfo")]
public class ProShaftInfo
{
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true,IsIdentity = true)]
public int id { get; set; }
[SugarColumn(ColumnName = "processId")]
public string processId { get; set; }
[SugarColumn(ColumnName = "positionId")]
public string positionId { get; set; }
[SugarColumn(ColumnName = "shaftName")]
public string shaftName { get; set; }
[SugarColumn(ColumnName = "bindRfid")]
public string bindRfid { get; set; }
[SugarColumn(ColumnName = "bindSfc")]
public string bindSfc { get; set; }
[SugarColumn(ColumnName = "bindEaValue")]
public string bindEaValue { get; set; }
[SugarColumn(ColumnName = "bindTime")]
public string bindTime { get; set; }
///
/// 是否为最后一卷,1:是,0否
///
[SugarColumn(ColumnName = "endFlag")]
public int endFlag { get; set; }
}
}