Browse Source

分配床位寝室床位列表 增加楼层和已入住人数

dzx 1 year ago
parent
commit
00951eaa42

+ 8 - 3
src/main/java/com/xjrsoft/module/room/vo/DistributeRoomBedPageVo.java

@@ -36,9 +36,9 @@ public class DistributeRoomBedPageVo {
     private String buildName;
 
     @ContentStyle(dataFormat = 49)
-    @ExcelProperty("专业部")
-    @ApiModelProperty("专业部")
-    private Integer floorNumer;
+    @ExcelProperty("楼层")
+    @ApiModelProperty("楼层")
+    private Integer floorNumber;
 
     @ContentStyle(dataFormat = 49)
     @ExcelProperty("寝室号")
@@ -65,4 +65,9 @@ public class DistributeRoomBedPageVo {
     @ApiModelProperty("床位数")
     private Integer bedCount;
 
+    @ContentStyle(dataFormat = 49)
+    @ExcelProperty("已入住人数")
+    @ApiModelProperty("已入住人数")
+    private Integer intoCount;
+
 }