63 lines
1.5 KiB
C#
63 lines
1.5 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace RIZO.Model.MES.product
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarTable("pro_label_trace_log")]
|
|||
|
|
public class ProLabelTraceLog
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// CreatedBy
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "created_by")]
|
|||
|
|
public string CreatedBy { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// CreatedTime
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "created_time")]
|
|||
|
|
public DateTime? CreatedTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// UpdatedBy
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "updated_by")]
|
|||
|
|
public string UpdatedBy { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// UpdatedTime
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|||
|
|
public DateTime? UpdatedTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 雪花
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
|||
|
|
public string Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工单号
|
|||
|
|
/// </summary>
|
|||
|
|
public string Workorder { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 标签内容
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "label_context")]
|
|||
|
|
public string LabelContext { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 0 默认未扫描报工 1已经扫描报工
|
|||
|
|
/// </summary>
|
|||
|
|
public int? Status { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|