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.
34 lines
892 B
34 lines
892 B
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_SEQ_DETAIL
|
|
{
|
|
[Key]
|
|
public long UID { get; set; }
|
|
|
|
public string 状态 { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string 单据号 { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string 发运单号 { get; set; }
|
|
[StringLength(50)]
|
|
public string 批次 { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string 物料号 { get; set; }
|
|
|
|
public decimal 数量 { get; set; }
|
|
|
|
public string 库位 { get; set; }
|
|
public string 箱码 { get; set; }
|
|
[StringLength(50)]
|
|
public string 项目编码 { get; set; }
|
|
[StringLength(50)]
|
|
public string 客户零件号 { get; set; }
|
|
[StringLength(50)]
|
|
public string 货架号 { get; set; }
|
|
}
|
|
}
|