QuoteKindRespVo.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. package com.ydtech.modules.ins.model.vo;
  2. /**
  3. * @author qinfenglong
  4. * @version 1.0.0
  5. * @description QuoteKindRespVo
  6. * @since 2020/11/27 0:04
  7. */
  8. public class QuoteKindRespVo {
  9. private double amount; //保额
  10. private double coveragePremium; //保费
  11. private double deductible;
  12. private double deductibleRate;
  13. private String kindCode; //险种编码
  14. private String kindName; //险种编码
  15. private String modeCode;
  16. private String modeName;
  17. private boolean notDeductibleFlag;
  18. private String quantity;
  19. private double rate;
  20. private String riskCode; //主险种编码
  21. private String serviceTimes;
  22. private double unitAmount;
  23. public double getAmount() {
  24. return amount;
  25. }
  26. public void setAmount(double amount) {
  27. this.amount = amount;
  28. }
  29. public double getCoveragePremium() {
  30. return coveragePremium;
  31. }
  32. public void setCoveragePremium(double coveragePremium) {
  33. this.coveragePremium = coveragePremium;
  34. }
  35. public double getDeductible() {
  36. return deductible;
  37. }
  38. public void setDeductible(double deductible) {
  39. this.deductible = deductible;
  40. }
  41. public double getDeductibleRate() {
  42. return deductibleRate;
  43. }
  44. public void setDeductibleRate(double deductibleRate) {
  45. this.deductibleRate = deductibleRate;
  46. }
  47. public String getKindCode() {
  48. return kindCode;
  49. }
  50. public void setKindCode(String kindCode) {
  51. this.kindCode = kindCode;
  52. }
  53. public String getKindName() {
  54. return kindName;
  55. }
  56. public void setKindName(String kindName) {
  57. this.kindName = kindName;
  58. }
  59. public String getModeCode() {
  60. return modeCode;
  61. }
  62. public void setModeCode(String modeCode) {
  63. this.modeCode = modeCode;
  64. }
  65. public String getModeName() {
  66. return modeName;
  67. }
  68. public void setModeName(String modeName) {
  69. this.modeName = modeName;
  70. }
  71. public boolean isNotDeductibleFlag() {
  72. return notDeductibleFlag;
  73. }
  74. public void setNotDeductibleFlag(boolean notDeductibleFlag) {
  75. this.notDeductibleFlag = notDeductibleFlag;
  76. }
  77. public String getQuantity() {
  78. return quantity;
  79. }
  80. public void setQuantity(String quantity) {
  81. this.quantity = quantity;
  82. }
  83. public double getRate() {
  84. return rate;
  85. }
  86. public void setRate(double rate) {
  87. this.rate = rate;
  88. }
  89. public String getRiskCode() {
  90. return riskCode;
  91. }
  92. public void setRiskCode(String riskCode) {
  93. this.riskCode = riskCode;
  94. }
  95. public String getServiceTimes() {
  96. return serviceTimes;
  97. }
  98. public void setServiceTimes(String serviceTimes) {
  99. this.serviceTimes = serviceTimes;
  100. }
  101. public double getUnitAmount() {
  102. return unitAmount;
  103. }
  104. public void setUnitAmount(double unitAmount) {
  105. this.unitAmount = unitAmount;
  106. }
  107. }