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
  | /* eslint-disable */ 
 |  // @ts-ignore 
 |  import { request } from '@/utils/request'; 
 |    
 |  /** 新增奖励金发放 POST /api/IncentivePayments/AddIncentivePayments */ 
 |  export async function addIncentivePayments( 
 |    body: API.AddIncentivePaymentsInput, 
 |    options?: API.RequestConfig 
 |  ) { 
 |    return request<number>('/api/IncentivePayments/AddIncentivePayments', { 
 |      method: 'POST', 
 |      headers: { 
 |        'Content-Type': 'application/json', 
 |      }, 
 |      data: body, 
 |      ...(options || {}), 
 |    }); 
 |  } 
 |    
 |  /** 获取奖励金发放管理分页列表 POST /api/IncentivePayments/GetIncentivePaymentsManagePage */ 
 |  export async function getIncentivePaymentsManagePage( 
 |    body: API.QueryIncentivePaymentsManageListInput, 
 |    options?: API.RequestConfig 
 |  ) { 
 |    return request<API.IncentivePaymentsManageListOutputPageOutput>( 
 |      '/api/IncentivePayments/GetIncentivePaymentsManagePage', 
 |      { 
 |        method: 'POST', 
 |        headers: { 
 |          'Content-Type': 'application/json', 
 |        }, 
 |        data: body, 
 |        ...(options || {}), 
 |      } 
 |    ); 
 |  } 
 |  
  |