lrf402788946 5 years ago
parent
commit
be9a1028eb
1 changed files with 3 additions and 2 deletions
  1. 3 2
      app/model/room.js

+ 3 - 2
app/model/room.js

@@ -4,8 +4,9 @@ const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
 
 
 const Room = {
 const Room = {
   number: { type: String, required: true, maxLength: 200 }, // 房间号
   number: { type: String, required: true, maxLength: 200 }, // 房间号
-  owner_id: { type: String, required: true, maxLength: 200 }, // 播主id
-  owner_name: { type: String, required: true, maxLength: 200 }, // 播主名称
+  title: { type: String, required: true, maxLength: 200 }, // 房间标题
+  owner_id: { type: String, required: true, maxLength: 200 }, // 管理人id
+  owner_name: { type: String, required: true, maxLength: 200 }, // 管理人名称
   room_status: { type: String, default: '0', maxLength: 1 }, // 房间状态:0未审核;1可使用;2已冻结
   room_status: { type: String, default: '0', maxLength: 1 }, // 房间状态:0未审核;1可使用;2已冻结
   live_status: { type: String, default: '0', maxLength: 1 }, // 直播状态:0已下播;1直播中
   live_status: { type: String, default: '0', maxLength: 1 }, // 直播状态:0已下播;1直播中
 };
 };