Procházet zdrojové kódy

删除问卷状态

liuyu před 5 roky
rodič
revize
1780e496e0
1 změnil soubory, kde provedl 0 přidání a 1 odebrání
  1. 0 1
      app/model/questionnaire.js

+ 0 - 1
app/model/questionnaire.js

@@ -7,7 +7,6 @@ const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
 const QuestionnaireSchema = {
 const QuestionnaireSchema = {
   name: { type: String, required: true, maxLength: 200 }, // 问卷名称
   name: { type: String, required: true, maxLength: 200 }, // 问卷名称
   num: { type: String, required: true, maxLength: 200 }, // 序号
   num: { type: String, required: true, maxLength: 200 }, // 序号
-  status: { type: String, required: true, maxLength: 200, defalut: 0 }, // 状态0、开启1、关闭
   question: [ String ], // 问题code
   question: [ String ], // 问题code
 };
 };