| | |
| | | ); |
| | | } |
| | | |
| | | /** 获取企业材料管理分页列表 POST /api/EnterpriseMaterial/GetEnterpriseMaterialManagePageTotal */ |
| | | export async function getEnterpriseMaterialManagePageTotal( |
| | | body: API.QueryEnterpriseMaterialManageListInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.EnterpriseMaterialManageListOutputPageOutput>( |
| | | '/api/EnterpriseMaterial/GetEnterpriseMaterialManagePageTotal', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | |
| | | /** 获取我的企业四流材料列表 POST /api/EnterpriseMaterial/GetMyEnterpriseMaterialPage */ |
| | | export async function getMyEnterpriseMaterialPage( |
| | | body: API.PageInput, |