New file |
| | |
| | | package com.hz.his.dto.appointment; |
| | | |
| | | import com.hz.his.dto.PageDto; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 预约dto |
| | | * |
| | | * @Author: zhouxiang |
| | | * @Date: 2022/10/19/11:26 |
| | | * @Description: |
| | | */ |
| | | @Data |
| | | public class AppointmentDto extends PageDto { |
| | | //预约spa参数 |
| | | //用户Id |
| | | private String userId; |
| | | //预约时间段开始 yyy-MM-dd HH:mm:ss |
| | | private String startTime; |
| | | //预约时间段结束 yyy-MM-dd HH:mm:ss |
| | | private String endTime; |
| | | //门店Id |
| | | private String shopId; |
| | | //美容师Id |
| | | private String beauticianId; |
| | | //来源标识(订单标识) |
| | | private String commonId; |
| | | //商品类型(OrderGoodsConstants) |
| | | private String type; |
| | | //预约项目数组 |
| | | private List preOrderItems; |
| | | //spa预约标识 |
| | | private String id; |
| | | } |