锐腾搅拌上料功能
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.

93 lines
3.8 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.NcApiEntity
  6. {
  7. public class CreateSaleDispatchEntity
  8. {
  9. public string pk_group { get; set; }
  10. public string pk_org { get; set; }
  11. public string dbilldate { get; set; }
  12. public string creationtime { get; set; }
  13. public string dmakedate { get; set; }
  14. public string cbiztypeid { get; set; }
  15. public List<CreateSaleDispatchDetailEntity> list { get; set; }
  16. }
  17. public class CreateSaleDispatchDetailEntity
  18. {
  19. public string cbiztypeid { get; set; }//待修改
  20. public string crowno { get; set; }
  21. public string cordercustid { get; set; }
  22. public string cmaterialid { get; set; }
  23. public string cmaterialvid { get; set; }
  24. public string castunitid { get; set; }
  25. public decimal nastnum { get; set; }
  26. public string vchangerate { get; set; }
  27. public string cqtunitid { get; set; }
  28. public decimal nqtunitnum { get; set; }
  29. public string vqtunitrate { get; set; }
  30. public string corigcurrencyid { get; set; }
  31. public decimal nexchangerate { get; set; }
  32. public string ccurrencyid { get; set; }
  33. public string ctaxcodeid { get; set; }
  34. public decimal ntaxrate { get; set; }
  35. public decimal ncaltaxmny { get; set; }
  36. public decimal ndiscountrate { get; set; }
  37. public decimal nitemdiscountrate { get; set; }
  38. public decimal norigtaxprice { get; set; }
  39. public decimal norigprice { get; set; }
  40. public decimal norigtaxnetprice { get; set; }
  41. public decimal norignetprice { get; set; }
  42. public decimal nqtorigtaxprice { get; set; }
  43. public decimal nqtorigprice { get; set; }
  44. public decimal nqtorigtaxnetprc { get; set; }
  45. public decimal nqtorignetprice { get; set; }
  46. public decimal norigmny { get; set; }
  47. public decimal norigtaxmny { get; set; }
  48. public decimal norigdiscount { get; set; }
  49. public decimal ntaxprice { get; set; }
  50. public decimal nprice { get; set; }
  51. public decimal ntaxnetprice { get; set; }
  52. public decimal nnetprice { get; set; }
  53. public decimal nqttaxprice { get; set; }
  54. public decimal nqtprice { get; set; }
  55. public decimal nqttaxnetprice { get; set; }
  56. public decimal nqtnetprice { get; set; }
  57. public decimal ntax { get; set; }
  58. public decimal nmny { get; set; }
  59. public decimal ntaxmny { get; set; }
  60. public decimal ndiscount { get; set; }
  61. public string vfirstcode { get; set; }
  62. public string vfirstrowno { get; set; }
  63. public string cfirstid { get; set; }
  64. public string cfirstbid { get; set; }
  65. public string vsrccode { get; set; }
  66. public string vsrcrowno { get; set; }
  67. public string csrcid { get; set; }
  68. public string csrcbid { get; set; }
  69. public string csaleorgid { get; set; }
  70. public string csaleorgvid { get; set; }
  71. public string csendstockorgid { get; set; }
  72. public string csendstockorgvid { get; set; }
  73. public string csendstordocid { get; set; }
  74. public string creceivecustid { get; set; }
  75. public string dsenddate { get; set; }
  76. public string dreceivedate { get; set; }
  77. public string carorgvid { get; set; }
  78. public string csettleorgid { get; set; }
  79. public string cdeptid { get; set; }
  80. public string cdeptvid { get; set; }
  81. public string crececountryid { get; set; }
  82. public string csendcountryid { get; set; }
  83. public string ctaxcountryid { get; set; }
  84. public string vfirstbilldate { get; set; }
  85. public string dbilldate { get; set; }
  86. public string pk_org { get; set; }
  87. public string cinvoicecustid { get; set; }
  88. }
  89. }