| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- package com.ydtech.modules.ins.model;
- import java.util.List;
- /**
- * @author qinfenglong
- * @version 1.0.0
- * @description HbQuoteInfo
- * @since 2020/11/29 22:13
- */
- public class HbQuoteInfo {
- private String clauseType;
- private String effectfLag;
- private String begintimeAccident;
- private String endtimeAccident;
- private List accidentInsuranceList;
- private String begintimeBi;
- private String begintimeCi;
- private String endtimeBi;
- private String endtimeCi;
- private String plyappno;
- private String risktype;
- private String expdisc;
- private String ecarshiptaxPart;
- private String taxdocumentnumber;
- private String taxonomyCode;
- private String epolicyFlag;
- private List<HbKind> epersonliabilityList;
- private HbVehicle transferVehicle;
- public String getClauseType() {
- return clauseType;
- }
- public void setClauseType(String clauseType) {
- this.clauseType = clauseType;
- }
- public String getEffectfLag() {
- return effectfLag;
- }
- public void setEffectfLag(String effectfLag) {
- this.effectfLag = effectfLag;
- }
- public String getBegintimeAccident() {
- return begintimeAccident;
- }
- public void setBegintimeAccident(String begintimeAccident) {
- this.begintimeAccident = begintimeAccident;
- }
- public String getEndtimeAccident() {
- return endtimeAccident;
- }
- public void setEndtimeAccident(String endtimeAccident) {
- this.endtimeAccident = endtimeAccident;
- }
- public List getAccidentInsuranceList() {
- return accidentInsuranceList;
- }
- public void setAccidentInsuranceList(List accidentInsuranceList) {
- this.accidentInsuranceList = accidentInsuranceList;
- }
- public String getBegintimeBi() {
- return begintimeBi;
- }
- public void setBegintimeBi(String begintimeBi) {
- this.begintimeBi = begintimeBi;
- }
- public String getBegintimeCi() {
- return begintimeCi;
- }
- public void setBegintimeCi(String begintimeCi) {
- this.begintimeCi = begintimeCi;
- }
- public String getEndtimeBi() {
- return endtimeBi;
- }
- public void setEndtimeBi(String endtimeBi) {
- this.endtimeBi = endtimeBi;
- }
- public String getEndtimeCi() {
- return endtimeCi;
- }
- public void setEndtimeCi(String endtimeCi) {
- this.endtimeCi = endtimeCi;
- }
- public String getPlyappno() {
- return plyappno;
- }
- public void setPlyappno(String plyappno) {
- this.plyappno = plyappno;
- }
- public String getRisktype() {
- return risktype;
- }
- public void setRisktype(String risktype) {
- this.risktype = risktype;
- }
- public String getExpdisc() {
- return expdisc;
- }
- public void setExpdisc(String expdisc) {
- this.expdisc = expdisc;
- }
- public String getEcarshiptaxPart() {
- return ecarshiptaxPart;
- }
- public void setEcarshiptaxPart(String ecarshiptaxPart) {
- this.ecarshiptaxPart = ecarshiptaxPart;
- }
- public String getTaxdocumentnumber() {
- return taxdocumentnumber;
- }
- public void setTaxdocumentnumber(String taxdocumentnumber) {
- this.taxdocumentnumber = taxdocumentnumber;
- }
- public String getTaxonomyCode() {
- return taxonomyCode;
- }
- public void setTaxonomyCode(String taxonomyCode) {
- this.taxonomyCode = taxonomyCode;
- }
- public String getEpolicyFlag() {
- return epolicyFlag;
- }
- public void setEpolicyFlag(String epolicyFlag) {
- this.epolicyFlag = epolicyFlag;
- }
- public List<HbKind> getEpersonliabilityList() {
- return epersonliabilityList;
- }
- public void setEpersonliabilityList(List<HbKind> epersonliabilityList) {
- this.epersonliabilityList = epersonliabilityList;
- }
- public HbVehicle getTransferVehicle() {
- return transferVehicle;
- }
- public void setTransferVehicle(HbVehicle transferVehicle) {
- this.transferVehicle = transferVehicle;
- }
- }
|