You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
684 B
Java
27 lines
684 B
Java
package com.glxp.api.res.basic;
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@HeadRowHeight(16) // 设置表头 高度 为 40
|
|
public class YbNotCodeResponse {
|
|
|
|
@ExcelProperty(value = "机构编码", index = 0)
|
|
@ColumnWidth(32)
|
|
private String organizationCode;
|
|
|
|
@ExcelProperty(value = "国家医保目录编码", index = 1)
|
|
@ColumnWidth(28)
|
|
private String ybbm;
|
|
|
|
@ExcelProperty(value = "无码类型(仅填数字即可)", index = 2)
|
|
@ColumnWidth(54)
|
|
private String notCodeType;
|
|
|
|
|
|
|
|
}
|