This commit is contained in:
zhoutianchi
2026-02-03 18:04:37 +08:00
parent 2046eea38a
commit 741752fa48
2 changed files with 233 additions and 234 deletions

View File

@@ -0,0 +1,10 @@
import request from '/@/utils/request';
export const exportTeacherInfoBySelf = (data?: any) => {
return request({
url: '/professional/file/exportTeacherInfoBySelf',
method: 'post',
data: data,
});
};