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.
52 lines
1.5 KiB
52 lines
1.5 KiB
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using ChangKeTec.Wms.Models.Enums;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class TS_TRACEBACK_MATERIAL
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int UID { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[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; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string SubBarCode { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string SubPartCode { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string SubBatch { get; set; }
|
|
[StringLength(50)]
|
|
public string SubVendId { get; set; }
|
|
[StringLength(50)]
|
|
public string SubVendBatch { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal SubQty { get; set; }
|
|
|
|
public string FromLocCode { get; set; }
|
|
|
|
public EnumBillState State { get; set; }
|
|
public string BillNum { get; set; }
|
|
}
|
|
}
|
|
|