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.
44 lines
1.1 KiB
44 lines
1.1 KiB
4 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class TB_OFFICE_RECIVE
|
||
|
{
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(50)]
|
||
|
public string BillNum { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string PartCode { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string CustPartCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string Batch { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string FromLocCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string ToLocCode { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal DeliverQty { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal ReciveQty { get; set; }
|
||
|
|
||
|
[StringLength(200)]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
public int State { get; set; }
|
||
|
}
|
||
|
}
|