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.
35 lines
834 B
35 lines
834 B
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_DELIVER_PICK_SUM
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
public string BillNum { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CustPartCode { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(50)]
|
|
public string ToLocCode { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[StringLength(50)]
|
|
public string Batch { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 4, TypeName = "money")]
|
|
public decimal Qty { get; set; }
|
|
}
|
|
}
|
|
|