using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace DOAN.Model.Mobile { /// /// 标签检验 /// [SugarTable("pro_inspection_label")] public class ProInspectionLabel { /// /// 雪花 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 工单号 /// [SugarColumn(ColumnName = "workorder")] public string Workorder { get; set; } [SugarColumn(ColumnName = "first_label")] public string FirstLabel { get; set; } [SugarColumn(ColumnName = "end_label")] public string EndLabel { 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; } } }