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.
39 lines
956 B
39 lines
956 B
4 years ago
|
#region 引用命名
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
#endregion
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public class VIEW_CQWKSAFEQTY
|
||
|
{
|
||
|
[Key]
|
||
|
[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; }
|
||
|
|
||
|
[StringLength(500)]
|
||
|
public string 备注 { get; set; }
|
||
|
}
|
||
|
}
|