HnTax.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.ydtech.modules.ins.model;
  2. /**
  3. * @author qinfenglong
  4. * @version 1.0.0
  5. * @description HnTax
  6. * @since 2020/11/26 23:30
  7. */
  8. public class HnTax {
  9. String deductionDueCode;
  10. String documentNumber;
  11. double sumOverDue;
  12. double sumTax;
  13. double sumTaxDefault;
  14. String taxConditionCode;
  15. String deduction;
  16. String taxDepartment;
  17. String taxDepartmentCode;
  18. String taxPaidAreaCode;
  19. String taxDocumentDate;
  20. String deductionDueType;
  21. public HnTax() {
  22. deductionDueCode = "";
  23. documentNumber = "";
  24. sumOverDue = 0;
  25. sumTax = 0;
  26. sumTaxDefault = 0;
  27. taxConditionCode = "1";
  28. deduction = "";
  29. taxDepartment = "";
  30. taxDepartmentCode = "";
  31. taxPaidAreaCode = "";
  32. taxDocumentDate = "";
  33. deductionDueType = "";
  34. }
  35. public String getDeductionDueCode() {
  36. return deductionDueCode;
  37. }
  38. public void setDeductionDueCode(String deductionDueCode) {
  39. this.deductionDueCode = deductionDueCode;
  40. }
  41. public String getDocumentNumber() {
  42. return documentNumber;
  43. }
  44. public void setDocumentNumber(String documentNumber) {
  45. this.documentNumber = documentNumber;
  46. }
  47. public double getSumOverDue() {
  48. return sumOverDue;
  49. }
  50. public void setSumOverDue(double sumOverDue) {
  51. this.sumOverDue = sumOverDue;
  52. }
  53. public double getSumTax() {
  54. return sumTax;
  55. }
  56. public void setSumTax(double sumTax) {
  57. this.sumTax = sumTax;
  58. }
  59. public double getSumTaxDefault() {
  60. return sumTaxDefault;
  61. }
  62. public void setSumTaxDefault(double sumTaxDefault) {
  63. this.sumTaxDefault = sumTaxDefault;
  64. }
  65. public String getTaxConditionCode() {
  66. return taxConditionCode;
  67. }
  68. public void setTaxConditionCode(String taxConditionCode) {
  69. this.taxConditionCode = taxConditionCode;
  70. }
  71. public String getDeduction() {
  72. return deduction;
  73. }
  74. public void setDeduction(String deduction) {
  75. this.deduction = deduction;
  76. }
  77. public String getTaxDepartment() {
  78. return taxDepartment;
  79. }
  80. public void setTaxDepartment(String taxDepartment) {
  81. this.taxDepartment = taxDepartment;
  82. }
  83. public String getTaxDepartmentCode() {
  84. return taxDepartmentCode;
  85. }
  86. public void setTaxDepartmentCode(String taxDepartmentCode) {
  87. this.taxDepartmentCode = taxDepartmentCode;
  88. }
  89. public String getTaxPaidAreaCode() {
  90. return taxPaidAreaCode;
  91. }
  92. public void setTaxPaidAreaCode(String taxPaidAreaCode) {
  93. this.taxPaidAreaCode = taxPaidAreaCode;
  94. }
  95. public String getTaxDocumentDate() {
  96. return taxDocumentDate;
  97. }
  98. public void setTaxDocumentDate(String taxDocumentDate) {
  99. this.taxDocumentDate = taxDocumentDate;
  100. }
  101. public String getDeductionDueType() {
  102. return deductionDueType;
  103. }
  104. public void setDeductionDueType(String deductionDueType) {
  105. this.deductionDueType = deductionDueType;
  106. }
  107. }