zjh
2025-01-21 7caeae303d4a93d0af2dc2d2f546987dd192be3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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;
}