|
@@ -19,7 +19,7 @@ public class RoomListDataVo {
|
|
|
@ExcelProperty("相关场景")
|
|
|
private String sceneNameListStr;
|
|
|
|
|
|
- @ExcelProperty("总观看时长(min)")
|
|
|
+ @ExcelProperty("时长/分")
|
|
|
private Long lookTime;
|
|
|
|
|
|
@ExcelProperty("创建时间")
|
|
@@ -28,13 +28,13 @@ public class RoomListDataVo {
|
|
|
@ExcelIgnore
|
|
|
private Integer roomStatus;
|
|
|
|
|
|
- @ExcelProperty("房间状态")
|
|
|
+ @ExcelProperty("状态")
|
|
|
private String roomStatusStr;
|
|
|
|
|
|
- @ExcelProperty("总观看次数")
|
|
|
+ @ExcelProperty("观看")
|
|
|
private Long lookManCount;
|
|
|
|
|
|
- @ExcelProperty("分享总数")
|
|
|
+ @ExcelProperty("分享")
|
|
|
private Long shareCount;
|
|
|
|
|
|
public String getRoomStatusStr() {
|
|
@@ -42,9 +42,9 @@ public class RoomListDataVo {
|
|
|
return "";
|
|
|
}
|
|
|
switch (roomStatus){
|
|
|
- case 0 :return "未开启";
|
|
|
- case 1 :return "进行中";
|
|
|
- case 2 :return "已关闭";
|
|
|
+ case 0 :return "未开始";
|
|
|
+ case 1 :return "带看中";
|
|
|
+ case 2 :return "已结束";
|
|
|
}
|
|
|
return roomStatusStr;
|
|
|
}
|