eight
2024-11-25 e534951af24c32c3210723779f2479d759fe0e34
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
package cn.lihu.jh.module.ecg.controller.admin.checktype.vo;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - 检查类型 Response VO")
@Data
public class SimpleCheckTypeRespVO {
 
    @Schema(description = "检查类型名", example = "常规心电")
    private String name;
 
    @Schema(description = "检查类型值")
    private Integer value;
 
    @Schema(description = "显示条码")
    private Integer displayBarcode;
 
    @Schema(description = "预约注意事项")
    private String notes;
}