| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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("进出存记录")]
- [Keyless]
- public class InvTransHistDto
- {
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string ItemNum { get; set; }
- /// <summary>
- /// 库位
- /// </summary>
- [Comment("库位")]
- public string Loc { get; set; }
- /// <summary>
- /// 批次
- /// </summary>
- [Comment("批次")]
- public string LotSerial { 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; }
- }
- }
|