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.
42 lines
965 B
42 lines
965 B
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_SORT_DETAIL
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public long UID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string 状态 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(50)]
|
|
public string 单据号 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[StringLength(50)]
|
|
public string VIN码 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 4)]
|
|
[StringLength(50)]
|
|
public string 序列号 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 5)]
|
|
[StringLength(50)]
|
|
public string 物料号 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 6)]
|
|
[StringLength(50)]
|
|
public string 项目编码 { get; set; }
|
|
}
|
|
}
|
|
|