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.3 KiB

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class TS_SEQ_DETAIL
{
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public long UID { get; set; }
[Key]
[Column(Order = 0)]
[StringLength(50)]
public string BillNum { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string SourceBillNum { get; set; }
[Key]
[Column(Order = 1)]
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string PartCode { get; set; }
[Key]
[Column(Order = 2)]
[StringLength(50)]
public string Batch { get; set; }
[Key]
[Column(Order = 3)]
[StringLength(50)]
public string LocCode { get; set; }
[StringLength(50)]
public string BarCode { get; set; }
public decimal Qty { get; set; }
[StringLength(50)]
public string ProjectId { get; set; }
[StringLength(50)]
public string State { get; set; }
[StringLength(50)]
public string CustPartCode { get; set; }
[StringLength(50)]
public string PalletCode { get; set; }
}
}