64 lines
1.5 KiB
C#
64 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.PBL
|
|
{
|
|
/// <summary>
|
|
/// mes交互日志
|
|
/// </summary>
|
|
[SugarTable("mes_interation_log")]
|
|
public class MES_Interation_Log
|
|
{
|
|
/// <summary>
|
|
/// 雪花
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Workorder")]
|
|
public string Workorder { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 订单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OrderNumber")]
|
|
public string OrderNumber { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 总成零件号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "AssemblyPartNumber")]
|
|
public string AssemblyPartNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 版本号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Version")]
|
|
public string Version { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 扫描scancode
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "scancode")]
|
|
public string ScanCode { get; set; }
|
|
|
|
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|
public DateTime UpdatedTime { get; set; }
|
|
}
|
|
}
|