锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.0 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Frame.Data.Entity
  6. {
  7. public class FormICSSOPriceSheet : XS001_0001_E001_2020
  8. {
  9. //入库单ID
  10. public string ID { get; set; }
  11. //入库单号
  12. public string VouchCode { get; set; }
  13. //入库单状态
  14. public string PickingSTATUS { get; set; }
  15. //供应商代码
  16. public string VENDORCODE { get; set; }
  17. //入库单类型
  18. public string PickingTYPE { get; set; }
  19. //备注
  20. public string WHCode { get; set; }
  21. public string MEMO { get; set; }
  22. public DateTime? CreateTIME { get; set; }
  23. public string CreateUSER { get; set; }
  24. public string WorkPoint { get; set; }
  25. public string MUSER { get; set; }
  26. public string MUSERName { get; set; }
  27. public DateTime? MTIME { get; set; }
  28. public string EATTRIBUTE1 { get; set; }
  29. //是否所有入库单明细都已入库,Y/N
  30. public string ISALLINSTORAGE { get; set; }
  31. public FormICSStorageUIModel sto { get; set; }
  32. public FormICSVendorUIModel ven { get; set; }
  33. public List<FormICSSOPriceSheetDetailModel> FormICSSOPriceSheetDetail { get; set; }
  34. public string Dept { get; set; }
  35. public string OutCategory { get; set; }
  36. public int IsPickingOrBack { get; set; }
  37. public bool IsMROItem { get; set; }
  38. //RDCode
  39. public string RDCode { get; set; }
  40. }
  41. /// <summary>
  42. /// 入库单行
  43. /// </summary>
  44. public class FormICSSOPriceSheetDetailModel : XS001_0001_E002_2020
  45. {
  46. //入库单号
  47. public string VouchCode { get; set; }
  48. //入库单ID
  49. public string ID { get; set; }
  50. //主表ID
  51. //public string PickingID { get; set; }
  52. //入库单行号
  53. public string VouchRow { get; set; }
  54. //入库单行状态
  55. public string MORow { get; set; }
  56. //应退数量
  57. public Decimal? Quantity { get; set; }
  58. //已退数量
  59. public Decimal? HasQuantity { get; set; }
  60. //存货编码
  61. public string SubInvCode { get; set; }
  62. //货物类型
  63. public string MoveType { get; set; }
  64. //库房
  65. public string WHCode { get; set; }
  66. //批次
  67. public string LotNo { get; set; }
  68. public string Reservation { get; set; }
  69. public string ReservationRow { get; set; }
  70. public string DeleteStatus { get; set; }
  71. public string Status { get; set; }
  72. public string VoucherNO { get; set; }//苏船工号
  73. //public string MEMO { get; set; }
  74. //public DateTime? CreateTIME { get; set; }
  75. //public string CreateUSER { get; set; }
  76. public string WorkPoint { get; set; }
  77. public string MUSER { get; set; }
  78. public string MUSERName { get; set; }
  79. public DateTime? VoucherDate { get; set; }
  80. public DateTime? MTIME { get; set; }
  81. public string EATTRIBUTE { get; set; }
  82. }
  83. }