| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using Business.Domain;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.StructuredDB.WMS
- {
- /// <summary>
- /// 平台规格库存对照
- /// </summary>
- [Comment("平台规格库存对照")]
- public class WMS_PlatformInventory : BaseEntity
- {
- /// <summary>
- /// 仓库
- /// </summary>
- [Comment("仓库")]
- public string Location { get; set; }
- /// <summary>
- /// 规格或货品编码
- /// </summary>
- [Comment("规格或货品编码")]
- public string SpecificationModel { get; set; }
- /// <summary>
- /// 批号
- /// </summary>
- [Comment("批号")]
- public string BatchNumber { get; set; }
- /// <summary>
- /// 数量
- /// </summary>
- [Comment("数量")]
- public decimal InventoryQuantity { get; set; }
- /// <summary>
- /// 有效期
- /// </summary>
- [Comment("有效期")]
- public DateTime PeriodOfValidity { get; set; }
- /// <summary>
- /// 编码
- /// </summary>
- [Comment("编码")]
- public string Code { get; set; }
- /// <summary>
- /// SAP料号
- /// </summary>
- [Comment("SAP料号")]
- public string SAPItemNumber { get; set; }
- }
- }
|