This commit is contained in:
qianhao.xu
2024-11-01 14:16:56 +08:00
parent 6466627106
commit 5b977a953a
8 changed files with 353 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
namespace DOAN.Model.PBL
{
/// <summary>
///
/// </summary>
[SugarTable("mes_interation_log")]
public class MesInterationLog
{
/// <summary>
/// 雪花
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Id { get; set; }
/// <summary>
/// 工单号
/// </summary>
public string Workorder { get; set; }
/// <summary>
/// 订单号
/// </summary>
public string OrderNumber { get; set; }
/// <summary>
/// 总成零件号
/// </summary>
public string AssemblyPartNumber { get; set; }
/// <summary>
/// 扫描码
/// </summary>
public string Scancode { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "created_time")]
public DateTime? CreatedTime { get; set; }
/// <summary>
/// 更改时间
/// </summary>
[SugarColumn(ColumnName = "updated_time")]
public DateTime? UpdatedTime { get; set; }
}
}