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