Explorar el Código

返回字段添加

chengyao hace 3 años
padre
commit
63828255c4

+ 16 - 0
common/src/main/java/com/lantone/common/dto/ViewRegionDTO.java

@@ -34,6 +34,22 @@ public class ViewRegionDTO implements Serializable {
     @ApiModelProperty(value = "启用状态 0-否 1-是")
     private String status;
 
+    @ApiModelProperty(value = "联系人")
+    private String liaison;
+
+    @ApiModelProperty(value = "手机号码")
+    private String phoneNumber;
+
+    @ApiModelProperty(value = "病区编码")
+    private String code;
+
+    @ApiModelProperty(value = "排序")
+    private String orderNo;
+
+    @ApiModelProperty(value = "区域类别")
+    private String station;
+
+    @ApiModelProperty(value = "创建时间")
     private Date gmtCreate;
 
 }

+ 5 - 0
dblayer-mbg/src/main/resources/mapper/RegionMapper.xml

@@ -5,6 +5,11 @@
         select t1.name,
         t1.hospital_name as hospitalName,
         t1.id,
+        t1.liaison,
+        t1.phone_number as phoneNumber,
+        t1.order_no as orderNo,
+        t1.station,
+        t1.code,
         t2.deptName,
         case t1.status
         when 1 then '启用'