CZT
2023-11-27 c206acfaedc69c390fb67daa81bc686f58a212ef
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
package com.ld.igds.m.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ld.igds.data.BaseParam;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
 
/**
 * 预约参数定义
 * 
 * @author czt
 * @date 2023-04-13 09:33
 *
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class AppointParam extends BaseParam {
 
    /**
     * 起始时间
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    public Date startTime;
 
    /**
     * 截止时间
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    public Date endTime;
 
    private String deptName;
    private String customerId;
    private String customerName;
    private String type;
}