feat(api): 添加百色中学和诊所相关API接口

- 新增百色中学报名记录相关接口和数据模型
- 新增百色中学分部、班级、年代、年级管理接口
- 新增百色中学捐款记录和排行相关接口
- 新增诊所挂号和医生入驻申请接口
- 添加相应的数据传输对象和搜索参数模型
- 实现分页查询、增删改查等基础操作接口
- 集成请求处理和错误处理机制
This commit is contained in:
2026-01-07 14:44:06 +08:00
parent 424e5641bb
commit d32fd4f711
459 changed files with 79443 additions and 1460 deletions

View File

@@ -0,0 +1,105 @@
import request from '@/utils/request';
import type { ApiResult, PageResult } from '@/api';
import type { CreditHistoricalLegalPerson, CreditHistoricalLegalPersonParam } from './model';
/**
* 分页查询历史法定代表人
*/
export async function pageCreditHistoricalLegalPerson(params: CreditHistoricalLegalPersonParam) {
const res = await request.get<ApiResult<PageResult<CreditHistoricalLegalPerson>>>(
'/credit/credit-historical-legal-person/page',
{
params
}
);
if (res.data.code === 0) {
return res.data.data;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 查询历史法定代表人列表
*/
export async function listCreditHistoricalLegalPerson(params?: CreditHistoricalLegalPersonParam) {
const res = await request.get<ApiResult<CreditHistoricalLegalPerson[]>>(
'/credit/credit-historical-legal-person',
{
params
}
);
if (res.data.code === 0 && res.data.data) {
return res.data.data;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 添加历史法定代表人
*/
export async function addCreditHistoricalLegalPerson(data: CreditHistoricalLegalPerson) {
const res = await request.post<ApiResult<unknown>>(
'/credit/credit-historical-legal-person',
data
);
if (res.data.code === 0) {
return res.data.message;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 修改历史法定代表人
*/
export async function updateCreditHistoricalLegalPerson(data: CreditHistoricalLegalPerson) {
const res = await request.put<ApiResult<unknown>>(
'/credit/credit-historical-legal-person',
data
);
if (res.data.code === 0) {
return res.data.message;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 删除历史法定代表人
*/
export async function removeCreditHistoricalLegalPerson(id?: number) {
const res = await request.delete<ApiResult<unknown>>(
'/credit/credit-historical-legal-person/' + id
);
if (res.data.code === 0) {
return res.data.message;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 批量删除历史法定代表人
*/
export async function removeBatchCreditHistoricalLegalPerson(data: (number | undefined)[]) {
const res = await request.delete<ApiResult<unknown>>(
'/credit/credit-historical-legal-person/batch',
{
data
}
);
if (res.data.code === 0) {
return res.data.message;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 根据id查询历史法定代表人
*/
export async function getCreditHistoricalLegalPerson(id: number) {
const res = await request.get<ApiResult<CreditHistoricalLegalPerson>>(
'/credit/credit-historical-legal-person/' + id
);
if (res.data.code === 0 && res.data.data) {
return res.data.data;
}
return Promise.reject(new Error(res.data.message));
}