|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MaterialTraceability.Entity.DAO
|
|
|
|
|
{
|
|
|
|
|
[SugarTable("Pro_Mater")]
|
|
|
|
|
public class ProductionInfo
|
|
|
|
|
{
|
|
|
|
|
/// <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 = "machineId")]
|
|
|
|
|
public string machineId { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "upMaterialRfid")]
|
|
|
|
|
public string upMaterialRfid { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "upMaterialSfc")]
|
|
|
|
|
public string upMaterialSfc { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "upMaterialEa")]
|
|
|
|
|
public string upMaterialEa { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "downMaterialRfid")]
|
|
|
|
|
public string downMaterialRfid { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "downMaterialSfc")]
|
|
|
|
|
public string downMaterialSfc { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "downMaterialEa")]
|
|
|
|
|
public string downMaterialEa { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "productionStatus")]
|
|
|
|
|
public string productionStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "recordTime")]
|
|
|
|
|
public string recordTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|