wupengfei
2 天以前 6e9df378f1c0d10af1a0eddc5afeaa2787213ec9
packages/services/apiV2/standardService.ts
@@ -35,6 +35,24 @@
  );
}
/** 查询开放标准订单服务分页列表 POST /api/flexjob/standardService/getOpenStandardServiceList */
export async function getOpenStandardServiceList(
  body: API.GetOpenStandardServiceListQuery,
  options?: API.RequestConfig
) {
  return request<API.GetStandardServicesQueryResultItem[]>(
    '/api/flexjob/standardService/getOpenStandardServiceList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json-patch+json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 查询开放标准订单服务分页列表 POST /api/flexjob/standardService/getOpenStandardServices */
export async function getOpenStandardServices(
  body: API.GetOpenStandardServicesQuery,