liusheng
2 天以前 af9f53d12a987187faee1cdbb1cb19efef7db909
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java
@@ -1,6 +1,7 @@
package cn.lihu.jh.module.ecg.controller.admin.appointment.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.*;
import java.sql.Date;
@@ -92,11 +93,19 @@
     * 登记时间
     */
    private Date registerDate;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date registerDateStart;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date registerDateEnd;
    /**
     * 创建时间
     */
    private LocalDateTime createTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTimeStart;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTimeEnd;
    /**
     * 登记时间(查询条件)
@@ -125,4 +134,19 @@
     */
    private String orderCreateTime;
    /**
     * 开单医生
     */
    private String doctor;
    /**
     * 开单医生编码
     */
    private String doctorCode;
    /**
     * 开单时间
     */
    private java.util.Date doctorTime;
}