using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace MaterialTraceability.Entity.DAO
{
///
/// 上料记录
///
[SugarTable("Pro_UpRecord")]
public class ProUpRecord
{
public ProUpRecord()
{
}
public ProUpRecord(string UpMaterialId,int MachineId, int PositionId, string Rfid, string Sfc,int IsProduction,string RecordTime)
{
this.UpMaterialId = UpMaterialId;
this.MachineId = MachineId;
this.PositionId = PositionId;
this.Rfid = Rfid;
this.Sfc = Sfc;
this.IsProduction = IsProduction;
this.RecordTime = RecordTime;
}
///
///
/// 默认值:
///
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true )]
public string Id { get; set; }
///
///
///
[SugarColumn(ColumnName = "upMaterialId")]
public string UpMaterialId { get; set; }
///
///
/// 默认值:
///
[SugarColumn(ColumnName="machineId" )]
public int MachineId { get; set; }
///
///
/// 默认值:
///
[SugarColumn(ColumnName="positionId" )]
public int PositionId { get; set; }
///
///
/// 默认值:
///
[SugarColumn(ColumnName="rfid" )]
public string Rfid { get; set; }
///
///
/// 默认值:
///
[SugarColumn(ColumnName="sfc" )]
public string Sfc { get; set; }
///
///
/// 默认值:
///
[SugarColumn(ColumnName="is_production" )]
public int IsProduction { get; set; }
///
///
/// 默认值:
///
[SugarColumn(ColumnName="recordTime")]
public string RecordTime { get; set; }
[SugarColumn(ColumnName = "eaValue")]
public int eaValue { get; set; }
[SugarColumn(ColumnName = "isFinish")]
public int isFinish { get; set; }
[SugarColumn(ColumnName = "beginTime")]
public string beginTime { get; set; }
[SugarColumn(ColumnName = "endTime")]
public string endTime { get; set; }
}
}