1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.dsh.course.feignClient.activity.model;
|
| import io.swagger.models.auth.In;
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * 接收查询参数VO
| */
| @Data
| public class QueryBodySideAppointment {
| private String phone;
| private String parentName;
| // 1 = 待体测 2 = 已体测
| private Integer state;
| // 1=今日内预约 2=明日预约 7=七日内
| private Integer day;
| // 门店id集合
| private List<Integer> ids;
| }
|
|