const makeId = require("../../util/makeId"); /** * @description 代码一次部署的基本信息 * @typedef {Object} DeploySerializerType * @property {number | string} id 代码一次部署的id * @property {number} deployState 部署状态 * @property {string} deployMessage 部署输出的信息 * @property {string} config 配置信息TBD * @property {string} pageUrl 项目部署的url */ /** * @description 生成代码构建信息 * @returns {DeploySerializerType} */ module.exports = () => { return { id: makeId(), deployState: 1, deployMessage: "部署信息....", config: "部署信息TBD...", pageUrl: "http://47.100.18.120:3000/SEEC-II-DOC/API-DOC" }; };