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.MES { /// /// 进出存记录 /// [Comment("进出存记录")] [Keyless] public class InvTransHistDto { /// /// 物料编号 /// [Comment("物料编号")] public string ItemNum { get; set; } /// /// 库位 /// [Comment("库位")] public string Loc { get; set; } /// /// 批次 /// [Comment("批次")] public string LotSerial { get; set; } /// /// 期初数 /// [Comment("期初数")] public decimal BeginBalance { get; set; } /// /// 期末数 /// [Comment("期末数")] public decimal BalanceNum { get; set; } /// /// 入库数 /// [Comment("入库数")] public decimal QtyChangeAdvance { get; set; } /// /// 出库数 /// [Comment("出库数")] public decimal QtyChangeOut { get; set; } } }