1234567891011121314151617181920212223 |
- package com.diagbot.entity.wrapper;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import com.diagbot.entity.ScaleConfig;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.ToString;
- /**
- * @Description:
- * @Author:zhaops
- * @time: 2021/9/22 15:15
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @ToString(callSuper = true)
- public class ScaleConfigWrapper extends ScaleConfig {
- /**
- * 医院诊断名称
- */
- @Excel(name = "标准术语状态", width = 40, orderNum = "99")
- private String status;
- }
|