package com.ltkj.hosp.dto;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ltkj.common.excelConfig.ExcelExport;
|
import com.ltkj.hosp.domain.TjReservation;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @Company: 西安路泰科技有限公司
|
* @Author: zjh
|
* @Date: 2023/8/7 15:46
|
*/
|
|
@Data
|
@ApiModel(value = "团体体检预约参数对象")
|
public class ConfirmDto {
|
|
/**
|
* 单位id
|
*/
|
@ApiModelProperty(value = "单位id")
|
private String dwId;
|
|
|
/**
|
* 单位部门id
|
*/
|
@ApiModelProperty(value = "单位部门id")
|
private String dwDeptId;
|
|
/**
|
* 团体人员
|
*/
|
@ApiModelProperty(value = "团体人员")
|
private List<TjReservation> reservations;
|
|
/**
|
* 支付金额
|
*/
|
@ApiModelProperty(value = "支付金额")
|
private String copeWith;
|
|
/**
|
* 预约时间
|
*/
|
@ApiModelProperty(value = "预约时间")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private String reservationTime;
|
|
/**
|
* 时间区间
|
*/
|
@ApiModelProperty(value = "时间区间")
|
private Integer timeRegion;
|
/**
|
* 支付方式
|
*/
|
@ApiModelProperty(value = "支付方式 0自费1公司付款")
|
private Integer payType;
|
|
/**
|
* 有效天数
|
*/
|
@ApiModelProperty(value = "有效天数")
|
private Integer yxts;
|
}
|