增加班费使用汇总

This commit is contained in:
yaojian
2026-03-02 14:29:10 +08:00
parent a3685852c5
commit 7a5740c56b
2 changed files with 264 additions and 10 deletions

View File

@@ -73,3 +73,16 @@ export const exportExcel = (query?: any) => {
});
};
/**
* 班费使用汇总
* @param schoolYear 学年
* @param schoolTerm 学期
*/
export const getSummary = (schoolYear: string, schoolTerm: string) => {
return request({
url: '/stuwork/classfeelog/summary',
method: 'get',
params: { schoolYear, schoolTerm }
});
};