1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| // @ts-ignore
| /* eslint-disable */
| import { request } from "umi";
|
| /** 获取培训费用列表 POST /oa/trainFee/GetTrainFeeList */
| export async function postOaTrainFeeGetTrainFeeList(
| body: API.GetTrainFeeListRequest,
| options?: { [key: string]: any }
| ) {
| return request<API.ResponseData>("/oa/trainFee/GetTrainFeeList", {
| method: "POST",
| headers: {
| "Content-Type": "application/json",
| },
| data: body,
| ...(options || {}),
| });
| }
|
| /** 新建培训费用 POST /oa/trainFee/NewTrainFee */
| export async function postOaTrainFeeNewTrainFee(
| body: API.NewTrainFeeRequest,
| options?: { [key: string]: any }
| ) {
| return request<API.ResponseData>("/oa/trainFee/NewTrainFee", {
| method: "POST",
| headers: {
| "Content-Type": "application/json",
| },
| data: body,
| ...(options || {}),
| });
| }
|
| /** 更新培训费用 POST /oa/trainFee/UpdateTrainFee */
| export async function postOaTrainFeeUpdateTrainFee(
| body: API.UpdateTrainFeeRequest,
| options?: { [key: string]: any }
| ) {
| return request<API.ResponseData>("/oa/trainFee/UpdateTrainFee", {
| method: "POST",
| headers: {
| "Content-Type": "application/json",
| },
| data: body,
| ...(options || {}),
| });
| }
|
|