namespace RIZO.Model.YALITEST { /// /// /// [SugarTable("test1")] public class Test1 { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// Lincode /// public string Linecode { get; set; } /// /// Lincename /// public string Linename { get; set; } /// /// Machinecode /// public string Machinecode { get; set; } /// /// Machinename /// public string Machinename { get; set; } /// /// Rountingcode /// public string Rountingcode { get; set; } /// /// Rountingname /// public string Rountingname { get; set; } /// /// Operationcode /// public string Operationcode { get; set; } /// /// Operationname /// public string Operationname { get; set; } /// /// Operationxuhao /// public int? Operationxuhao { get; set; } /// /// Status /// public int? Status { get; set; } /// /// Worker /// public string Worker { get; set; } /// /// 进站时间 /// public DateTime? Starttime { get; set; } /// /// 出站时间 /// public DateTime? Finishtime { get; set; } /// /// 0待上传,1已上传 /// public int? Ifupload { get; set; } /// /// Partnumber /// public string Partnumber { get; set; } } }