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;
|
}
|