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.
56 lines
1.4 KiB
56 lines
1.4 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_CalOverdue_DAYS
|
|
{
|
|
public int? 安全天数 { get; set; }
|
|
public int? 在库天数 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
public string 箱号 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
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; }
|
|
|
|
[StringLength(50)]
|
|
public string 项目号 { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string 供应商 { get; set; }
|
|
|
|
|
|
public decimal 数量 { get; set; }
|
|
|
|
public DateTime 入库日期 { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string 产品品种 { get; set; }
|
|
[StringLength(50)]
|
|
public string 保管员 { get; set; }
|
|
|
|
public int 有效期 { get; set; }
|
|
[Column(TypeName = "date")]
|
|
public DateTime 生产日期 { get; set; }
|
|
|
|
[Column(TypeName = "date")]
|
|
public DateTime 过期日期 { get; set; }
|
|
}
|
|
}
|
|
|