|
|
@@ -5,7 +5,7 @@ const makeId = require("../../util/makeId");
|
|
|
* @typedef {Object} CheckListItemSerializerType
|
|
|
* @property {number|string} id checkListItem id
|
|
|
* @property {string} content 评价内容
|
|
|
- * @property {string} level 用户评级
|
|
|
+ * @property {boolean} level 用户评级
|
|
|
* @property {string} comment 用户备注
|
|
|
* @property {string} explain 老师说明
|
|
|
* @property {string} remark 学生申请argue的备注
|
|
|
@@ -20,7 +20,7 @@ module.exports = ({ id = makeId(), state = "DEFAULT" }) => {
|
|
|
return {
|
|
|
id,
|
|
|
content: "该项评价的内容, String",
|
|
|
- level: "用户的备注, String",
|
|
|
+ level: false,
|
|
|
comment: "用户的评级",
|
|
|
explain: "老师的说明,String",
|
|
|
remark: "学生申请argue的备注",
|