| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Domain
- {
- /// <summary>
- /// 物料主表
- /// </summary>
- [Comment("物料主表")]
- public class ItemMaster
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string ItemNum { get; set; }
- /// <summary>
- /// 单位
- /// </summary>
- [Comment("单位")]
- public string UM { get; set; }
- /// <summary>
- /// 安全库存
- /// </summary>
- [Comment("安全库存")]
- public decimal? SafetyStk { get; set; }
- /// <summary>
- /// 状态:C为不可用状态
- /// </summary>
- [Comment("状态")]
- public string Status { get; set; }
- /// <summary>
- /// 状态:C为不可用状态
- /// </summary>
- [Comment("状态")]
- public string Location { get; set; }
- public string Descr { get; set; }
- public string Descr1 { get; set; }
- public string PurMfg { get; set; }
- public bool IsMainMas { get; set; }
- public decimal? NetWeight { get; set; }
- public string NetWeightUM { get; set; }
- public decimal? Length { get; set; }
- public decimal? Width { get; set; }
- public decimal? Height { get; set; }
- public bool LotSerialControl { get; set; }
- public string DefaultShelf { get; set; }
- public decimal? MaxOrd { get; set; }
- public decimal? MinOrd { get; set; }
- public decimal MFGMTTR { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否整包发料")]
- public bool TraceDetail { get; set; }
- /// <summary>
- /// 供应提前期
- /// </summary>
- [Comment("供应提前期")]
- public int PurLT { get; set; }
- /// <summary>
- /// 存货周转率
- /// </summary>
- [Comment("存货周转率")]
- public decimal StockTurnOver { get; set; }
- }
- }
|