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.

78 lines
2.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}