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.
40 lines
1.0 KiB
40 lines
1.0 KiB
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_STOCK_GROUP
|
|
{
|
|
[Key]
|
|
[StringLength(50)]
|
|
public string 物料号 { 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; }
|
|
|
|
[StringLength(50)]
|
|
public string 单位 { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? 最大库存 { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? 最小库存 { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? 安全库存 { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? 当前库存 { get; set; }
|
|
}
|
|
}
|
|
|