You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
394 B
18 lines
394 B
'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
|
|
}
|
|
|