InvTransHistDto.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.StructuredDB.MES
  9. {
  10. /// <summary>
  11. /// 进出存记录
  12. /// </summary>
  13. [Comment("进出存记录")]
  14. [Keyless]
  15. public class InvTransHistDto
  16. {
  17. /// <summary>
  18. /// 物料编号
  19. /// </summary>
  20. [Comment("物料编号")]
  21. public string ItemNum { get; set; }
  22. /// <summary>
  23. /// 库位
  24. /// </summary>
  25. [Comment("库位")]
  26. public string Loc { get; set; }
  27. /// <summary>
  28. /// 批次
  29. /// </summary>
  30. [Comment("批次")]
  31. public string LotSerial { get; set; }
  32. /// <summary>
  33. /// 期初数
  34. /// </summary>
  35. [Comment("期初数")]
  36. public decimal BeginBalance { get; set; }
  37. /// <summary>
  38. /// 期末数
  39. /// </summary>
  40. [Comment("期末数")]
  41. public decimal BalanceNum { get; set; }
  42. /// <summary>
  43. /// 入库数
  44. /// </summary>
  45. [Comment("入库数")]
  46. public decimal QtyChangeAdvance { get; set; }
  47. /// <summary>
  48. /// 出库数
  49. /// </summary>
  50. [Comment("出库数")]
  51. public decimal QtyChangeOut { get; set; }
  52. }
  53. }