修正表结构
This commit is contained in:
56
DOAN.Model/PBL/MES_Interaction.cs
Normal file
56
DOAN.Model/PBL/MES_Interaction.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
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>
|
||||
/// 扫描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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user