提交 | 用户 | age
|
63f110
|
1 |
package com.hz.his.dto.appointment; |
Z |
2 |
|
|
3 |
import com.hz.his.dto.PageDto; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.util.List; |
|
7 |
|
|
8 |
/** |
|
9 |
* 预约dto |
|
10 |
* |
|
11 |
* @Author: zhouxiang |
|
12 |
* @Date: 2022/10/19/11:26 |
|
13 |
* @Description: |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
public class AppointmentDto extends PageDto { |
|
17 |
//预约spa参数 |
|
18 |
//用户Id |
|
19 |
private String userId; |
|
20 |
//预约时间段开始 yyy-MM-dd HH:mm:ss |
|
21 |
private String startTime; |
|
22 |
//预约时间段结束 yyy-MM-dd HH:mm:ss |
|
23 |
private String endTime; |
|
24 |
//门店Id |
|
25 |
private String shopId; |
|
26 |
//美容师Id |
|
27 |
private String beauticianId; |
|
28 |
//来源标识(订单标识) |
|
29 |
private String commonId; |
|
30 |
//商品类型(OrderGoodsConstants) |
|
31 |
private String type; |
|
32 |
//预约项目数组 |
|
33 |
private List preOrderItems; |
|
34 |
//spa预约标识 |
|
35 |
private String id; |
|
36 |
} |