49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
|
|
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; }
|
|
|
|
}
|
|
} |