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("进出存明细每日快照")] public class InvTransHistDay { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 域名 /// [Comment("域名")] public string Domain { get; set; } /// /// 物料编号 /// [Comment("物料编号")] public string ItemNum { 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; } /// /// 库存日期 /// [Comment("库存日期")] public DateTime HistDayTime { get; set; } } }