eight
2024-11-20 250c7323a46a2ccb633179ee06f2514847b4c5b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
}