guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.stylefeng.guns.modular.business.dto;
 
import cn.stylefeng.guns.modular.business.entity.MentalAppointment;
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "我的性格分析预约-响应参数")
public class MentalTestMyMentalAppointmentDTO extends MentalAppointment {
 
    @ApiModelProperty(value = "咨询师姓名")
    @ChineseDescription("咨询师姓名")
    private String workerNickName;
 
}