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.

50 lines
1.3 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.Entity.DAO
{
/// <summary>
/// 卷轴信息
/// </summary>
[SugarTable("Pro_ShaftInfo")]
public class ProShaftInfo
{
/// <summary>
///
/// </summary>
[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; }
/// <summary>
/// 是否为最后一卷10否
/// </summary>
[SugarColumn(ColumnName = "endFlag")]
public int endFlag { get; set; }
}
}