TaApplyInfoDto.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package com.ydtech.modules.ins.model;
  2. /**
  3. * @author qinfenglong
  4. * @version 1.0.0
  5. * @description TaApplyInfoDto
  6. * @since 2021/6/5 17:52
  7. */
  8. public class TaApplyInfoDto {
  9. private String insuredType;
  10. private String applybirthDate;
  11. private String applyName;
  12. private String applyidentifyType;
  13. private String applyidentifyNumber;
  14. private String applysex;
  15. private String applymobilePhone;
  16. private String applyAddress;
  17. private String applyemail;
  18. private String certiStartDate;
  19. public String getInsuredType() {
  20. return insuredType;
  21. }
  22. public void setInsuredType(String insuredType) {
  23. this.insuredType = insuredType;
  24. }
  25. public String getApplybirthDate() {
  26. return applybirthDate;
  27. }
  28. public void setApplybirthDate(String applybirthDate) {
  29. this.applybirthDate = applybirthDate;
  30. }
  31. public String getApplyName() {
  32. return applyName;
  33. }
  34. public void setApplyName(String applyName) {
  35. this.applyName = applyName;
  36. }
  37. public String getApplyidentifyType() {
  38. return applyidentifyType;
  39. }
  40. public void setApplyidentifyType(String applyidentifyType) {
  41. this.applyidentifyType = applyidentifyType;
  42. }
  43. public String getApplyidentifyNumber() {
  44. return applyidentifyNumber;
  45. }
  46. public void setApplyidentifyNumber(String applyidentifyNumber) {
  47. this.applyidentifyNumber = applyidentifyNumber;
  48. }
  49. public String getApplysex() {
  50. return applysex;
  51. }
  52. public void setApplysex(String applysex) {
  53. this.applysex = applysex;
  54. }
  55. public String getApplymobilePhone() {
  56. return applymobilePhone;
  57. }
  58. public void setApplymobilePhone(String applymobilePhone) {
  59. this.applymobilePhone = applymobilePhone;
  60. }
  61. public String getApplyAddress() {
  62. return applyAddress;
  63. }
  64. public void setApplyAddress(String applyAddress) {
  65. this.applyAddress = applyAddress;
  66. }
  67. public String getApplyemail() {
  68. return applyemail;
  69. }
  70. public void setApplyemail(String applyemail) {
  71. this.applyemail = applyemail;
  72. }
  73. public String getCertiStartDate() {
  74. return certiStartDate;
  75. }
  76. public void setCertiStartDate(String certiStartDate) {
  77. this.certiStartDate = certiStartDate;
  78. }
  79. }