eight
2024-10-15 a0cb526759c40821f0c98fab6dd24e4b8d4ba2c8
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/jobrecord/vo/JobRecordPageReqVO.java
@@ -1,5 +1,6 @@
package cn.lihu.jh.module.ecg.controller.admin.jobrecord.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.*;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
@@ -16,7 +17,7 @@
public class JobRecordPageReqVO extends PageParam {
    @Schema(description = "作业类型", example = "1")
    private Integer jobType;
    private Integer[] jobType;
    @Schema(description = "医生编号", example = "24197")
    private Long docId;
@@ -38,7 +39,7 @@
    private LocalDateTime[] jobTime;
    @Schema(description = "作业概要")
    private Integer summary;
    private String summary;
    @Schema(description = "备注", example = "你猜")
    private String remark;
@@ -47,4 +48,7 @@
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] createTime;
    @Schema(description = "对应租赁编号", example = "19472")
    private Long rentId;
}