package com.hz.his.dto.preOrder;
|
|
import com.hz.his.dto.PageDto;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @ClassName Appointment
|
* @Description 预约信息表
|
* @Author Wrh
|
* @Date 2022/10/18 11:10
|
* @Version 1.0
|
*/
|
@Data
|
public class PreOrderDto extends PageDto {
|
|
/*用户id*/
|
private String userId;
|
private String id;
|
/*用户名称*/
|
private String userName;
|
/*预约开始时间*/
|
private String startTime;
|
/*预约结束时间*/
|
private String endTime;
|
/*门店Id*/
|
private String shopId;
|
/*门店名称*/
|
private String shopName;
|
|
/*来源标识(订单标识*/
|
private String commonId;
|
/*商品类型*/
|
private String type;
|
/*所属平台appId*/
|
private String platBelongAppId;
|
/*所属平台Code*/
|
private String platBelongCode;
|
/*所属平台名称*/
|
private String platBelongName;
|
/*来源平台appId*/
|
private String platSourceAppId;
|
/*来源平台code*/
|
private String platSourceCode;
|
/*来源平台名称*/
|
private String platSourceName;
|
/*是否SPA(0:否,1:是)*/
|
private Integer isSpa;
|
/*备注*/
|
private String remarks;
|
/*状态 0:待到店;1:取消预约;2:已到店;3:预约完成*/
|
private Integer status;
|
/*工作人员排班id*/
|
private String employeeScheduleId;
|
/*工作人员排班子项id*/
|
private String employeeScheduleItemId;
|
/*预约时长,以分钟为存储单位*/
|
private Integer useDuration;
|
/*员工名称*/
|
private String employeeName;
|
/*员工id*/
|
private String employeeId;
|
/*下单操作人标识(Employee)*/
|
private String operatorId;
|
private String operatorName;
|
|
|
//预约项目
|
List<PreOrderItemDto> preOrderItems;
|
|
}
|