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