FinshedEnterStoreUpdateDto.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using Abp.Application.Services.Dto;
  4. using Abp.AutoMapper;
  5. using ShwasherSys.ProductStoreInfo;
  6. namespace ShwasherSys.FinshedStoreInfo.Dto
  7. {
  8. /// <summary>
  9. /// 成品仓库维护
  10. /// </summary>
  11. [AutoMapTo(typeof(FinshedEnterStore))]
  12. public class FinshedEnterStoreUpdateDto: EntityDto<int>
  13. {
  14. [Required]
  15. [StringLength(FinshedEnterStore.ProductionOrderNoMaxLength)]
  16. public string ProductionOrderNo { get; set; }
  17. [Required]
  18. [StringLength(FinshedEnterStore.PackageApplyNoMaxLength)]
  19. public string PackageApplyNo { get; set; }
  20. /// <summary>
  21. /// 半成品编号
  22. /// </summary>
  23. [StringLength(FinshedEnterStore.SemiProductNoMaxLength)]
  24. public string SemiProductNo { get; set; }
  25. /// <summary>
  26. /// 半成品编号
  27. /// </summary>
  28. [StringLength(FinshedEnterStore.ProductNoMaxLength)]
  29. public string ProductNo { get; set; }
  30. [Required]
  31. public int StoreHouseId { get; set; }
  32. [StringLength(FinshedEnterStore.StoreLocationNoMaxLength)]
  33. public string StoreLocationNo { get; set; }
  34. /// <summary>
  35. /// 申请状态
  36. /// </summary>
  37. [Required]
  38. public int ApplyStatus { get; set; }
  39. /// <summary>
  40. /// 是否已关闭
  41. /// </summary>
  42. public bool IsClose { get; set; }
  43. /// <summary>
  44. /// 申请来源(1.车间包装 )
  45. /// </summary>
  46. [Required]
  47. public int ApplySource { get; set; }
  48. /// <summary>
  49. /// 申请入库数量(千斤)
  50. /// </summary>
  51. public decimal Quantity { get; set; }
  52. /// <summary>
  53. /// 包装规格
  54. /// </summary>
  55. public decimal PackageSpecification { get; set; }
  56. /// <summary>
  57. /// 申请入库包数
  58. /// </summary>
  59. public decimal PackageCount { get; set; }
  60. /// <summary>
  61. /// 实际入库包数
  62. /// </summary>
  63. public decimal ActualPackageCount { get; set; }
  64. /// <summary>
  65. /// 审核人员
  66. /// </summary>
  67. public string AuditUser { get; set; }
  68. /// <summary>
  69. /// 审核时间
  70. /// </summary>
  71. public DateTime? AuditDate { get; set; }
  72. /// <summary>
  73. /// 申请入库时间
  74. /// </summary>
  75. public DateTime? ApplyEnterDate { get; set; }
  76. [StringLength(FinshedEnterStore.RemarkMaxLength)]
  77. public string Remark { get; set; }
  78. public DateTime? TimeCreated { get; set; }
  79. public DateTime? TimeLastMod { get; set; }
  80. [StringLength(FinshedEnterStore.CreatorUserIdMaxLength)]
  81. public string CreatorUserId { get; set; }
  82. [StringLength(FinshedEnterStore.UserIDLastModMaxLength)]
  83. public string UserIDLastMod { get; set; }
  84. }
  85. }