wupengfei
2025-11-21 8e8b54a9a91fb174c368f51d8b0b2850faf58342
src/services/api/ParkBountyApply.ts
@@ -47,6 +47,14 @@
  });
}
/** 此处后端没有提供注释 GET /api/ParkBountyApply/Get818UserInfo */
export async function get818UserInfo(options?: API.RequestConfig) {
  return request<API.UserInfoV2>('/api/ParkBountyApply/Get818UserInfo', {
    method: 'GET',
    ...(options || {}),
  });
}
/** 此处后端没有提供注释 POST /api/ParkBountyApply/GetEnterpriseDrawWithList */
export async function getEnterpriseDrawWithList(
  body: API.GetEnterpriseDrawWithListInput,
@@ -181,3 +189,18 @@
    ...(options || {}),
  });
}
/** 奖励金-出账-同步交易信息 POST /api/ParkBountyApply/SyncParkBountyApplyTradeTransaction */
export async function syncParkBountyApplyTradeTransaction(
  body: API.SyncParkBountyApplyTradeTransactionInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/ParkBountyApply/SyncParkBountyApplyTradeTransaction', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}