|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
namespace MaterialTraceability.Entity.DAO
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("Pro_DownRecord")]
|
|
|
|
|
public class ProDownRecord
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true )]
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="machineId" )]
|
|
|
|
|
public int MachineId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="positionId" )]
|
|
|
|
|
public int PositionId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="rfid" )]
|
|
|
|
|
public string Rfid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="sfc" )]
|
|
|
|
|
public string Sfc { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="is_production" )]
|
|
|
|
|
public int IsProduction { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="recordTime" )]
|
|
|
|
|
public string RecordTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="downMaterialId" )]
|
|
|
|
|
public string DownMaterialId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "eaValue")]
|
|
|
|
|
public int eaValue { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否完工 0:正在生产,1:正在完工,2:已完工,3:异常结束
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "isFinish")]
|
|
|
|
|
public int isFinish { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 轴号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "shaftNumber")]
|
|
|
|
|
public string shaftNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "beginTime")]
|
|
|
|
|
public string beginTime { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "endTime")]
|
|
|
|
|
public string endTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|