| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- package com.ylx.massage.domain.vo;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.ylx.common.annotation.Excel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.experimental.Accessors;
- import java.math.BigInteger;
- import java.util.ArrayList;
- import java.util.Date;
- /**
- * 技师对象 ma_technician
- *
- * @author ylx
- * @date 2024-03-22
- */
- @Data
- public class MaTechnicianAppAddVo {
- private static final long serialVersionUID = 1L;
- /**
- * id
- */
- @ApiModelProperty("id")
- private String id;
- /**
- * 姓名
- */
- @ApiModelProperty("姓名")
- private String teName;
- /**
- * 昵称
- */
- @Excel(name = "昵称")
- private String teNickName;
- /**
- * 密码
- */
- @Excel(name = "密码")
- private String tePassword;
- /**
- * 性别(0女1男)
- */
- @Excel(name = "性别(0女1男)")
- @ApiModelProperty("性别(0女1男)")
- private Integer teSex;
- /**
- * 开通服务:1-上门按摩 2-同城玩乐
- */
- @Excel(name = "开通服务:1-上门按摩 2-同城玩乐")
- private BigInteger openService;
- /**
- * 电话
- */
- @Excel(name = "电话")
- @ApiModelProperty("电话")
- private String tePhone;
- /**
- * 合作意向城市
- */
- @Excel(name = "合作意向城市")
- @ApiModelProperty("合作意向城市")
- private String teAddress;
- /**
- * 服务标签(1:按摩推拿 2:陪玩)
- */
- private Integer serviceTag;
- /**
- * 年龄
- */
- @Excel(name = "年龄")
- @ApiModelProperty("年龄")
- private BigInteger teAge;
- /**
- * 头像
- */
- @Excel(name = "头像")
- @ApiModelProperty("头像")
- private String teAvatar;
- /**
- * 生活照
- */
- @Excel(name = "生活照")
- @ApiModelProperty("生活照")
- private String lifePhotos;
- /**
- * 简介
- */
- @Excel(name = "简介")
- @ApiModelProperty("简介")
- private String teBrief;
- /**
- * 形象照
- */
- @Excel(name = "形象照")
- @ApiModelProperty("形象照")
- private String avatar;
- /**
- * 身份证
- */
- @Excel(name = "身份证")
- @ApiModelProperty("身份证")
- private String idCard;
- /**
- * 宣传视频
- */
- @Excel(name = "宣传视频")
- @ApiModelProperty("宣传视频")
- private String promoVideo;
- /**
- * 健康证
- */
- @Excel(name = "健康证")
- @ApiModelProperty("健康证")
- private String healthCertificate;
- /**
- * 从业资格证
- */
- @Excel(name = "从业资格证")
- @ApiModelProperty("从业资格证")
- private String qualificationCertificate;
- /**
- * 无犯罪证明
- */
- @Excel(name = "无犯罪证明")
- @ApiModelProperty("无犯罪证明")
- private String noCrimeRecord;
- /**
- * 承诺书
- */
- @Excel(name = "承诺书")
- @ApiModelProperty("承诺书")
- private String commitmentPdf;
- /**
- * 承诺录音
- */
- @Excel(name = "承诺录音")
- @ApiModelProperty("承诺录音")
- private String commitmentAudio;
- /**
- * 承诺录像
- */
- @Excel(name = "承诺录像")
- @ApiModelProperty("承诺录像")
- private String commitmentVideo;
- /**
- * 审核状态:0-待审核,1-待审核,2-审核通过,3-审核驳回
- */
- @Excel(name = "审核状态:0-待入驻,1-待审核,2-审核通过,3-审核驳回")
- @ApiModelProperty("审核状态:0-待入驻,1-待审核,2-审核通过,3-审核驳回")
- private int auditStatus;
- /**
- * 审批时间
- */
- @Excel(name = "审批时间")
- @ApiModelProperty("审批时间")
- private Date approveTime;
- @ApiModelProperty("项目id集合")
- private ArrayList<Long> projectIds;
- }
|