ソースを参照

excel 编码、关联编码循环嵌套

lenovodn 2 年 前
コミット
c7b07f838e

+ 9 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/entity/Operative.java

@@ -52,6 +52,15 @@ public class Operative implements Serializable {
 	@Excel(name = "操作名称", width = 15)
     @ApiModelProperty(value = "操作名称")
     private java.lang.String operName;
+    @Excel(name = "章节序号", width = 15)
+    @ApiModelProperty(value = "章节序号")
+    private java.lang.String chapterNumber;
+    @Excel(name = "码段长度", width = 15)
+    @ApiModelProperty(value = "码段长度")
+    private java.lang.String codeSegmentLength;
+    @Excel(name = "是否标记阴影", width = 15)
+    @ApiModelProperty(value = "是否标记阴影")
+    private java.lang.String whetherToMarkShadows;
 	/**状态*/
 	@Excel(name = "状态", width = 15)
     @ApiModelProperty(value = "状态")

+ 1 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/entity/SysUser.java

@@ -221,6 +221,7 @@ public class SysUser implements Serializable {
     private String practiceRange;
 
     private String professionalName;
+    @Dict(dicCode = "doctor_level")
     private String doctorLevel;
 
 }