| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- package com.ydtech.modules.ins.model.vo;
- /**
- * @author qinfenglong
- * @version 1.0.0
- * @description QuoteKindRespVo
- * @since 2020/11/27 0:04
- */
- public class QuoteKindRespVo {
- private double amount; //保额
- private double coveragePremium; //保费
- private double deductible;
- private double deductibleRate;
- private String kindCode; //险种编码
- private String kindName; //险种编码
- private String modeCode;
- private String modeName;
- private boolean notDeductibleFlag;
- private String quantity;
- private double rate;
- private String riskCode; //主险种编码
- private String serviceTimes;
- private double unitAmount;
- public double getAmount() {
- return amount;
- }
- public void setAmount(double amount) {
- this.amount = amount;
- }
- public double getCoveragePremium() {
- return coveragePremium;
- }
- public void setCoveragePremium(double coveragePremium) {
- this.coveragePremium = coveragePremium;
- }
- public double getDeductible() {
- return deductible;
- }
- public void setDeductible(double deductible) {
- this.deductible = deductible;
- }
- public double getDeductibleRate() {
- return deductibleRate;
- }
- public void setDeductibleRate(double deductibleRate) {
- this.deductibleRate = deductibleRate;
- }
- public String getKindCode() {
- return kindCode;
- }
- public void setKindCode(String kindCode) {
- this.kindCode = kindCode;
- }
- public String getKindName() {
- return kindName;
- }
- public void setKindName(String kindName) {
- this.kindName = kindName;
- }
- public String getModeCode() {
- return modeCode;
- }
- public void setModeCode(String modeCode) {
- this.modeCode = modeCode;
- }
- public String getModeName() {
- return modeName;
- }
- public void setModeName(String modeName) {
- this.modeName = modeName;
- }
- public boolean isNotDeductibleFlag() {
- return notDeductibleFlag;
- }
- public void setNotDeductibleFlag(boolean notDeductibleFlag) {
- this.notDeductibleFlag = notDeductibleFlag;
- }
- public String getQuantity() {
- return quantity;
- }
- public void setQuantity(String quantity) {
- this.quantity = quantity;
- }
- public double getRate() {
- return rate;
- }
- public void setRate(double rate) {
- this.rate = rate;
- }
- public String getRiskCode() {
- return riskCode;
- }
- public void setRiskCode(String riskCode) {
- this.riskCode = riskCode;
- }
- public String getServiceTimes() {
- return serviceTimes;
- }
- public void setServiceTimes(String serviceTimes) {
- this.serviceTimes = serviceTimes;
- }
- public double getUnitAmount() {
- return unitAmount;
- }
- public void setUnitAmount(double unitAmount) {
- this.unitAmount = unitAmount;
- }
- }
|