| 123456789101112131415161718192021 |
- const makeId = require("../../util/makeId");
- /**
- * @description 成绩条目
- * @typedef {Object} ScoreSerializerType
- * @property {number} id 条目编号
- * @property {string} name 条目名称
- * @property {string} score 得分
- */
- /**
- * @description 生成条目成绩
- * @returns {ScoreSerializerType}
- */
- module.exports = () => {
- return {
- id: makeId(),
- name: "测试",
- score: "90"
- };
- };
|