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; } /// /// 物料编码 /// [Comment("物料编码")] public string MATNR { get; set; } /// /// 库位 /// [Comment("库位")] public string LGORT { get; set; } /// /// 数量 /// [Comment("数量")] public string LABST { get; set; } } }