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.
84 lines
2.1 KiB
84 lines
2.1 KiB
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
/*
|
|
public partial class VIEW_STOCK_DETAIL
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public long UID { get; set; }
|
|
|
|
[NotMapped]
|
|
public string 状态 => ((StockState)State).ToString();
|
|
|
|
[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; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal 数量 { get; set; }
|
|
|
|
[StringLength(500)]
|
|
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 DateTime 接收日期 { get; set; }
|
|
|
|
public DateTime 生产日期 { get; set; }
|
|
|
|
public DateTime 失效日期 { get; set; }
|
|
|
|
public DateTime 更新时间 { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal 更新数量 { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string 追溯号 { get; set; }
|
|
|
|
|
|
[StringLength(50)]
|
|
public string 器具号 { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string 计划顺序号 { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal 价格 { get; set; }
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int VIN状态 { get; set; }
|
|
|
|
public int State { get; set; }
|
|
}
|
|
*/
|
|
}
|
|
|