gs_vat_cpy.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package sb
  2. import "time"
  3. // 成品油购数量明细表
  4. type GsTaxCpygsl struct {
  5. AddFlag bool `json:"addFlag"`
  6. CreatedAt time.Time `json:"createdAt"`
  7. GsMainID int `json:"gsMainID"`
  8. Id int `json:"id"`
  9. L1 string `json:"l1"`
  10. L2 string `json:"l2"`
  11. L3 string `json:"l3"`
  12. L4 string `json:"l4"`
  13. L5 string `json:"l5"`
  14. Type string `json:"type"`
  15. UpdatedAt time.Time `json:"updatedAt"`
  16. }
  17. // 成品油购销存
  18. type GsTaxCpygxc struct {
  19. AddFlag bool `json:"addFlag"`
  20. CreatedAt time.Time `json:"createdAt"`
  21. GsMainId int `json:"gsMainId"`
  22. Id int `json:"id"`
  23. L1 string `json:"l1"`
  24. L10 string `json:"l10"`
  25. L11 string `json:"l11"`
  26. L12 string `json:"l12"`
  27. L13 string `json:"l13"`
  28. L14 string `json:"l14"`
  29. L15 string `json:"l15"`
  30. L16 string `json:"l16"`
  31. L17 string `json:"l17"`
  32. L18 string `json:"l18"`
  33. L2 string `json:"l2"`
  34. L3 string `json:"l3"`
  35. L4 string `json:"l4"`
  36. L5 string `json:"l5"`
  37. L6 string `json:"l6"`
  38. L7 string `json:"l7"`
  39. L8 string `json:"l8"`
  40. L9 string `json:"l9"`
  41. Type string `json:"type"`
  42. UpdatedAt time.Time `json:"updatedAt"`
  43. }
  44. // 油站月份加油信息明细
  45. type GsTaxJyzyjyxx struct {
  46. AddFlag bool `json:"addFlag"`
  47. CreatedAt time.Time `json:"createdAt"`
  48. FillingTime string `json:"fillingTime"`
  49. GsMainId int `json:"gsMainId"`
  50. Gunslinger string `json:"gunslinger"`
  51. Id int `json:"id"`
  52. Item []GsTaxJyzyjyxxItem `json:"item"`
  53. LegalRepresentative string `json:"legalRepresentative"`
  54. LegalRepresentativePhone string `json:"legalRepresentativePhone"`
  55. Month string `json:"month"`
  56. Preparer string `json:"preparer"`
  57. ProcessingTime string `json:"processingTime"`
  58. Receiver string `json:"receiver"`
  59. TaxAcceptingAuthority string `json:"taxAcceptingAuthority"`
  60. Taxpayer string `json:"taxpayer"`
  61. TaxpayerNumber string `json:"taxpayerNumber"`
  62. UpdatedAt time.Time `json:"updatedAt"`
  63. }
  64. type GsTaxJyzyjyxxItem struct {
  65. AddFlag bool `json:"addFlag"`
  66. Id int `json:"id"`
  67. L1 string `json:"l1"`
  68. L2 string `json:"l2"`
  69. L3 string `json:"l3"`
  70. L4 string `json:"l4"`
  71. L5 string `json:"l5"`
  72. }
  73. // 加油站月销售油品汇总表
  74. type GsTaxJyzysx struct {
  75. AddFlag bool `json:"addFlag"`
  76. CreatedAt time.Time `json:"createdAt"`
  77. FillingTime string `json:"fillingTime"`
  78. GsMainId int `json:"gsMainId"`
  79. Id int `json:"id"`
  80. Item []struct {
  81. AddFlag bool `json:"addFlag"`
  82. CreatedAt time.Time `json:"createdAt"`
  83. GsMainId int `json:"gsMainId"`
  84. Id int `json:"id"`
  85. L1 string `json:"l1"`
  86. L10 string `json:"l10"`
  87. L11 string `json:"l11"`
  88. L12 string `json:"l12"`
  89. L13 string `json:"l13"`
  90. L14 string `json:"l14"`
  91. L15 string `json:"l15"`
  92. L16 string `json:"l16"`
  93. L2 string `json:"l2"`
  94. L3 string `json:"l3"`
  95. L4 string `json:"l4"`
  96. L5 string `json:"l5"`
  97. L6 string `json:"l6"`
  98. L7 string `json:"l7"`
  99. L8 string `json:"l8"`
  100. L9 string `json:"l9"`
  101. MainId int `json:"mainId"`
  102. UpdatedAt time.Time `json:"updatedAt"`
  103. } `json:"item"`
  104. LegalRepresentative string `json:"legalRepresentative"`
  105. LegalRepresentativePhone string `json:"legalRepresentativePhone"`
  106. Preparer string `json:"preparer"`
  107. TaxAcceptingAuthority string `json:"taxAcceptingAuthority"`
  108. UpdatedAt time.Time `json:"updatedAt"`
  109. }