HbQuoteInfo.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. package com.ydtech.modules.ins.model;
  2. import java.util.List;
  3. /**
  4. * @author qinfenglong
  5. * @version 1.0.0
  6. * @description HbQuoteInfo
  7. * @since 2020/11/29 22:13
  8. */
  9. public class HbQuoteInfo {
  10. private String clauseType;
  11. private String effectfLag;
  12. private String begintimeAccident;
  13. private String endtimeAccident;
  14. private List accidentInsuranceList;
  15. private String begintimeBi;
  16. private String begintimeCi;
  17. private String endtimeBi;
  18. private String endtimeCi;
  19. private String plyappno;
  20. private String risktype;
  21. private String expdisc;
  22. private String ecarshiptaxPart;
  23. private String taxdocumentnumber;
  24. private String taxonomyCode;
  25. private String epolicyFlag;
  26. private List<HbKind> epersonliabilityList;
  27. private HbVehicle transferVehicle;
  28. public String getClauseType() {
  29. return clauseType;
  30. }
  31. public void setClauseType(String clauseType) {
  32. this.clauseType = clauseType;
  33. }
  34. public String getEffectfLag() {
  35. return effectfLag;
  36. }
  37. public void setEffectfLag(String effectfLag) {
  38. this.effectfLag = effectfLag;
  39. }
  40. public String getBegintimeAccident() {
  41. return begintimeAccident;
  42. }
  43. public void setBegintimeAccident(String begintimeAccident) {
  44. this.begintimeAccident = begintimeAccident;
  45. }
  46. public String getEndtimeAccident() {
  47. return endtimeAccident;
  48. }
  49. public void setEndtimeAccident(String endtimeAccident) {
  50. this.endtimeAccident = endtimeAccident;
  51. }
  52. public List getAccidentInsuranceList() {
  53. return accidentInsuranceList;
  54. }
  55. public void setAccidentInsuranceList(List accidentInsuranceList) {
  56. this.accidentInsuranceList = accidentInsuranceList;
  57. }
  58. public String getBegintimeBi() {
  59. return begintimeBi;
  60. }
  61. public void setBegintimeBi(String begintimeBi) {
  62. this.begintimeBi = begintimeBi;
  63. }
  64. public String getBegintimeCi() {
  65. return begintimeCi;
  66. }
  67. public void setBegintimeCi(String begintimeCi) {
  68. this.begintimeCi = begintimeCi;
  69. }
  70. public String getEndtimeBi() {
  71. return endtimeBi;
  72. }
  73. public void setEndtimeBi(String endtimeBi) {
  74. this.endtimeBi = endtimeBi;
  75. }
  76. public String getEndtimeCi() {
  77. return endtimeCi;
  78. }
  79. public void setEndtimeCi(String endtimeCi) {
  80. this.endtimeCi = endtimeCi;
  81. }
  82. public String getPlyappno() {
  83. return plyappno;
  84. }
  85. public void setPlyappno(String plyappno) {
  86. this.plyappno = plyappno;
  87. }
  88. public String getRisktype() {
  89. return risktype;
  90. }
  91. public void setRisktype(String risktype) {
  92. this.risktype = risktype;
  93. }
  94. public String getExpdisc() {
  95. return expdisc;
  96. }
  97. public void setExpdisc(String expdisc) {
  98. this.expdisc = expdisc;
  99. }
  100. public String getEcarshiptaxPart() {
  101. return ecarshiptaxPart;
  102. }
  103. public void setEcarshiptaxPart(String ecarshiptaxPart) {
  104. this.ecarshiptaxPart = ecarshiptaxPart;
  105. }
  106. public String getTaxdocumentnumber() {
  107. return taxdocumentnumber;
  108. }
  109. public void setTaxdocumentnumber(String taxdocumentnumber) {
  110. this.taxdocumentnumber = taxdocumentnumber;
  111. }
  112. public String getTaxonomyCode() {
  113. return taxonomyCode;
  114. }
  115. public void setTaxonomyCode(String taxonomyCode) {
  116. this.taxonomyCode = taxonomyCode;
  117. }
  118. public String getEpolicyFlag() {
  119. return epolicyFlag;
  120. }
  121. public void setEpolicyFlag(String epolicyFlag) {
  122. this.epolicyFlag = epolicyFlag;
  123. }
  124. public List<HbKind> getEpersonliabilityList() {
  125. return epersonliabilityList;
  126. }
  127. public void setEpersonliabilityList(List<HbKind> epersonliabilityList) {
  128. this.epersonliabilityList = epersonliabilityList;
  129. }
  130. public HbVehicle getTransferVehicle() {
  131. return transferVehicle;
  132. }
  133. public void setTransferVehicle(HbVehicle transferVehicle) {
  134. this.transferVehicle = transferVehicle;
  135. }
  136. }