liuyu 5 năm trước cách đây
mục cha
commit
cf851b0273
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      app/model/room.js

+ 1 - 0
app/model/room.js

@@ -21,6 +21,7 @@ const RoomSchema = {
   starttime: { type: String, required: false }, // 开始时间
   endtime: { type: String, required: false }, // 结束时间
   status: { type: String, required: false, maxLength: 64, default: '0' }, // 状态0、开启1、关闭
+  isadvert: { type: String, required: false, maxLength: 64, default: '0' }, // 是否有广告位0、开启1、关闭
   adverts: { type: [ AdvertInfo ], required: false, select: true }, // 广告位
 };