You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
1 year ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using ChangKeTec.Wms.Models.Enums;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class TS_TRACEBACK
|
||
|
{
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[StringLength(50)]
|
||
|
public string BarCode { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string PartCode { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string Batch { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal Qty { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string ProjectId { get; set; }
|
||
|
[StringLength(50)]
|
||
|
public string TracebackCode { get; set; }
|
||
|
[StringLength(50)]
|
||
|
public string WorklineId { get; set; }
|
||
|
[StringLength(50)]
|
||
|
public string TeamId { get; set; }
|
||
|
[StringLength(50)]
|
||
|
public string ShiftId { get; set; }
|
||
|
[StringLength(50)]
|
||
|
public string Worker { get; set; }
|
||
|
[StringLength(4000)]
|
||
|
public string MaterialInfo { get; set; }
|
||
|
|
||
|
[Column(TypeName = "xml")]
|
||
|
public string TracebackData { get; set; }
|
||
|
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
[StringLength(500)]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
public string SourceBillNum { get; set; }
|
||
|
public EnumBillState State { get; set; }
|
||
|
public string BillNum { get; set; }
|
||
|
}
|
||
|
}
|