'use strict'; async function getDepartmentTrainRecordList(ctx) { try { ctx.status = 200; ctx.body = {}; } catch (error) { ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); ctx.status = 400; ctx.body = { message: '查询部门培训记录列表失败' } } } module.exports = { getDepartmentTrainRecordList }