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.
102 lines
2.6 KiB
C#
102 lines
2.6 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaterialTraceability.Entity.UpLoad
|
|
{
|
|
/// <summary>
|
|
/// 放卷记录
|
|
/// </summary>
|
|
[SugarTable("pro_uprecord")]
|
|
public class UpRecord
|
|
{
|
|
/// <summary>
|
|
/// 主键标识
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true ,IsIdentity =true)]
|
|
public int id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户端记录Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "clientId")]
|
|
|
|
public string clientId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "machineId")]
|
|
public int machineId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 资源编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "resource")]
|
|
public String resource { get; set; }
|
|
|
|
/// <summary>
|
|
/// 位置编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "positionId")]
|
|
public int positionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// rfid条码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "rfidStr")]
|
|
public String rfidStr { get; set; }
|
|
|
|
/// <summary>
|
|
/// SFC编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "sfcStr")]
|
|
public String sfcStr { get; set; }
|
|
|
|
/// <summary>
|
|
/// EA数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "eaValue")]
|
|
public int eaValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 涂布膜卷
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "upMaterialId")]
|
|
public String upMaterialId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否生产
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "is_Production")]
|
|
public int isProduction { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否完工
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "is_Finish")]
|
|
public int isFinish { get; set; }
|
|
|
|
/// <summary>
|
|
/// 记录时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "recordTime")]
|
|
public String recordTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "begin_Time")]
|
|
public String beginTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "end_Time")]
|
|
public String endTime { get; set; }
|
|
}
|
|
}
|