hjl
2024-07-16 ec6d43aa07ee0e8faf34498057ebcfbb446aa015
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
package com.ruoyi.order.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-05-31 16:14
 */
@Data
@ApiModel(value = "OrderByUserInfoVO对象", description = "预约人信息")
public class OrderByUserInfoVO {
 
    @ApiModelProperty("头像")
    private String profilePicture;
 
    @ApiModelProperty("用户ID")
    private String userNumber;
 
    @ApiModelProperty("预约姓名")
    private String reservationName;
 
    @ApiModelProperty("预约手机号")
    private String reservationPhone;
 
    @ApiModelProperty("预约地址")
    private String reservationAddress;
 
    @ApiModelProperty("预约上门时间")
    private String time;
 
}