KKSU
2025-04-08 82d77490b23df66b120c16e2986d1ccaca1ca314
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package cc.mrbird.febs.mall.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel(value = "ApiDoctorListVo", description = "信息返回类")
public class ApiDoctorListVo {
 
    @ApiModelProperty(value = "ID")
    private Long id;
 
    @ApiModelProperty(value = "绑定记录ID")
    private Long storeMemberId;
 
    @ApiModelProperty(value = "绑定人")
    private String name;
 
    @ApiModelProperty(value = "绑定人电话")
    private String phone;
 
    @ApiModelProperty(value = "年龄")
    private Integer bindAge;
 
    @ApiModelProperty(value = "绑定的信息")
    private String bindInfo;
 
    @ApiModelProperty(value = "绑定时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdTime;
 
}