Bläddra i källkod

perf: 增加缺失字段

Scott 2 år sedan
förälder
incheckning
7859f26c35

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

@@ -44,6 +44,11 @@ public class ConsumableMaterial implements Serializable {
 	@Excel(name = "耗材编码", width = 15)
     @ApiModelProperty(value = "耗材编码")
     private java.lang.String consumableCode;
+
+    @Excel(name = "单价", width = 15)
+    @ApiModelProperty(value = "单价")
+    private BigDecimal price;
+
 	/**耗材版本*/
 	@Excel(name = "耗材版本", width = 15)
     @ApiModelProperty(value = "耗材版本")

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

@@ -80,6 +80,11 @@ public class DiagnosisTreatment implements Serializable {
 	@Excel(name = "项目内涵", width = 15)
     @ApiModelProperty(value = "项目内涵")
     private java.lang.String projectConnotation;
+
+    @Excel(name = "单价", width = 15)
+    @ApiModelProperty(value = "单价")
+    private BigDecimal price;
+
 	/**除外内容*/
 	@Excel(name = "除外内容", width = 15)
     @ApiModelProperty(value = "除外内容")

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

@@ -52,6 +52,10 @@ public class Medicine implements Serializable {
     @Excel(name = "商品名称", width = 15)
     @ApiModelProperty(value = "商品名称")
     private java.lang.String commodityName;
+
+    @Excel(name = "单价", width = 15)
+    @ApiModelProperty(value = "单价")
+    private BigDecimal price;
     /**剂型*/
     @Excel(name = "剂型", width = 15)
     @ApiModelProperty(value = "剂型")

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

@@ -46,6 +46,9 @@ public class SysUser implements Serializable {
     @Excel(name = "登录账号", width = 15)
     private String username;
 
+    @Excel(name = "医生编码")
+    private String doctorId;
+
     /**
      * 真实姓名
      */