using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace MaterialTraceability.Entity.DAO
{
///
///
///
[SugarTable("Pro_DownRecord")]
public class ProDownRecord
{
///
///
///
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true )]
public string Id { 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="downMaterialId" )]
public string DownMaterialId { get; set; }
[SugarColumn(ColumnName = "eaValue")]
public int eaValue { get; set; }
///
/// 是否完工 0:正在生产,1:正在完工,2:已完工,3:异常结束
///
[SugarColumn(ColumnName = "isFinish")]
public int isFinish { get; set; }
///
/// 轴号
///
[SugarColumn(ColumnName = "shaftNumber")]
public string shaftNumber { get; set; }
[SugarColumn(ColumnName = "beginTime")]
public string beginTime { get; set; }
[SugarColumn(ColumnName = "endTime")]
public string endTime { get; set; }
}
}