| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- package com.ydtech.modules.ins.model;
- /**
- * @author qinfenglong
- * @version 1.0.0
- * @description TaApplyInfoDto
- * @since 2021/6/5 17:52
- */
- public class TaApplyInfoDto {
- private String insuredType;
- private String applybirthDate;
- private String applyName;
- private String applyidentifyType;
- private String applyidentifyNumber;
- private String applysex;
- private String applymobilePhone;
- private String applyAddress;
- private String applyemail;
- private String certiStartDate;
- public String getInsuredType() {
- return insuredType;
- }
- public void setInsuredType(String insuredType) {
- this.insuredType = insuredType;
- }
- public String getApplybirthDate() {
- return applybirthDate;
- }
- public void setApplybirthDate(String applybirthDate) {
- this.applybirthDate = applybirthDate;
- }
- public String getApplyName() {
- return applyName;
- }
- public void setApplyName(String applyName) {
- this.applyName = applyName;
- }
- public String getApplyidentifyType() {
- return applyidentifyType;
- }
- public void setApplyidentifyType(String applyidentifyType) {
- this.applyidentifyType = applyidentifyType;
- }
- public String getApplyidentifyNumber() {
- return applyidentifyNumber;
- }
- public void setApplyidentifyNumber(String applyidentifyNumber) {
- this.applyidentifyNumber = applyidentifyNumber;
- }
- public String getApplysex() {
- return applysex;
- }
- public void setApplysex(String applysex) {
- this.applysex = applysex;
- }
- public String getApplymobilePhone() {
- return applymobilePhone;
- }
- public void setApplymobilePhone(String applymobilePhone) {
- this.applymobilePhone = applymobilePhone;
- }
- public String getApplyAddress() {
- return applyAddress;
- }
- public void setApplyAddress(String applyAddress) {
- this.applyAddress = applyAddress;
- }
- public String getApplyemail() {
- return applyemail;
- }
- public void setApplyemail(String applyemail) {
- this.applyemail = applyemail;
- }
- public String getCertiStartDate() {
- return certiStartDate;
- }
- public void setCertiStartDate(String certiStartDate) {
- this.certiStartDate = certiStartDate;
- }
- }
|