MaTechnicianAppAddVo.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. package com.ylx.massage.domain.vo;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.ylx.common.annotation.Excel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import lombok.experimental.Accessors;
  7. import java.math.BigInteger;
  8. import java.util.ArrayList;
  9. import java.util.Date;
  10. /**
  11. * 技师对象 ma_technician
  12. *
  13. * @author ylx
  14. * @date 2024-03-22
  15. */
  16. @Data
  17. public class MaTechnicianAppAddVo {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * id
  21. */
  22. @ApiModelProperty("id")
  23. private String id;
  24. /**
  25. * 姓名
  26. */
  27. @ApiModelProperty("姓名")
  28. private String teName;
  29. /**
  30. * 昵称
  31. */
  32. @Excel(name = "昵称")
  33. private String teNickName;
  34. /**
  35. * 密码
  36. */
  37. @Excel(name = "密码")
  38. private String tePassword;
  39. /**
  40. * 性别(0女1男)
  41. */
  42. @Excel(name = "性别(0女1男)")
  43. @ApiModelProperty("性别(0女1男)")
  44. private Integer teSex;
  45. /**
  46. * 开通服务:1-上门按摩 2-同城玩乐
  47. */
  48. @Excel(name = "开通服务:1-上门按摩 2-同城玩乐")
  49. private BigInteger openService;
  50. /**
  51. * 电话
  52. */
  53. @Excel(name = "电话")
  54. @ApiModelProperty("电话")
  55. private String tePhone;
  56. /**
  57. * 合作意向城市
  58. */
  59. @Excel(name = "合作意向城市")
  60. @ApiModelProperty("合作意向城市")
  61. private String teAddress;
  62. /**
  63. * 服务标签(1:按摩推拿 2:陪玩)
  64. */
  65. private Integer serviceTag;
  66. /**
  67. * 年龄
  68. */
  69. @Excel(name = "年龄")
  70. @ApiModelProperty("年龄")
  71. private BigInteger teAge;
  72. /**
  73. * 头像
  74. */
  75. @Excel(name = "头像")
  76. @ApiModelProperty("头像")
  77. private String teAvatar;
  78. /**
  79. * 生活照
  80. */
  81. @Excel(name = "生活照")
  82. @ApiModelProperty("生活照")
  83. private String lifePhotos;
  84. /**
  85. * 简介
  86. */
  87. @Excel(name = "简介")
  88. @ApiModelProperty("简介")
  89. private String teBrief;
  90. /**
  91. * 形象照
  92. */
  93. @Excel(name = "形象照")
  94. @ApiModelProperty("形象照")
  95. private String avatar;
  96. /**
  97. * 身份证
  98. */
  99. @Excel(name = "身份证")
  100. @ApiModelProperty("身份证")
  101. private String idCard;
  102. /**
  103. * 宣传视频
  104. */
  105. @Excel(name = "宣传视频")
  106. @ApiModelProperty("宣传视频")
  107. private String promoVideo;
  108. /**
  109. * 健康证
  110. */
  111. @Excel(name = "健康证")
  112. @ApiModelProperty("健康证")
  113. private String healthCertificate;
  114. /**
  115. * 从业资格证
  116. */
  117. @Excel(name = "从业资格证")
  118. @ApiModelProperty("从业资格证")
  119. private String qualificationCertificate;
  120. /**
  121. * 无犯罪证明
  122. */
  123. @Excel(name = "无犯罪证明")
  124. @ApiModelProperty("无犯罪证明")
  125. private String noCrimeRecord;
  126. /**
  127. * 承诺书
  128. */
  129. @Excel(name = "承诺书")
  130. @ApiModelProperty("承诺书")
  131. private String commitmentPdf;
  132. /**
  133. * 承诺录音
  134. */
  135. @Excel(name = "承诺录音")
  136. @ApiModelProperty("承诺录音")
  137. private String commitmentAudio;
  138. /**
  139. * 承诺录像
  140. */
  141. @Excel(name = "承诺录像")
  142. @ApiModelProperty("承诺录像")
  143. private String commitmentVideo;
  144. /**
  145. * 审核状态:0-待审核,1-待审核,2-审核通过,3-审核驳回
  146. */
  147. @Excel(name = "审核状态:0-待入驻,1-待审核,2-审核通过,3-审核驳回")
  148. @ApiModelProperty("审核状态:0-待入驻,1-待审核,2-审核通过,3-审核驳回")
  149. private int auditStatus;
  150. /**
  151. * 审批时间
  152. */
  153. @Excel(name = "审批时间")
  154. @ApiModelProperty("审批时间")
  155. private Date approveTime;
  156. @ApiModelProperty("项目id集合")
  157. private ArrayList<Long> projectIds;
  158. }