| | |
| | | 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; |
| | |
| | | public class JobRecordPageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "作业类型", example = "1") |
| | | private Integer jobType; |
| | | private Integer[] jobType; |
| | | |
| | | @Schema(description = "医生编号", example = "24197") |
| | | private Long docId; |
| | |
| | | private LocalDateTime[] jobTime; |
| | | |
| | | @Schema(description = "作业概要") |
| | | private Integer summary; |
| | | private String summary; |
| | | |
| | | @Schema(description = "备注", example = "你猜") |
| | | private String remark; |
| | |
| | | @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
| | | private LocalDateTime[] createTime; |
| | | |
| | | @Schema(description = "对应租赁编号", example = "19472") |
| | | private Long rentId; |
| | | |
| | | } |