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.StructuredDB.WMS { /// /// SAP库存表 /// public class SAPInv { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 域名 /// [Comment("域名")] public string WERKS { get; set; } /// /// 租户ID /// [Comment("租户ID")] public long? tenant_id { get; set; } /// /// 物料编码 /// [Comment("物料编码")] public string MATNR { get; set; } /// /// 库位 /// [Comment("库位")] public string LGORT { get; set; } /// /// 非限制库存量 /// [Comment("非限制库存量")] public decimal LABST { get; set; } /// /// 质检库存 /// [Comment("质检库存")] public decimal INSME { get; set; } /// /// 冻结库存 /// [Comment("冻结库存")] public decimal SPEME { get; set; } /// /// 库存标识 K/O /// [Comment("库存标识 K/O")] public string SOBKZ { get; set; } } }