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