2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import type { PageParam, PageResult } from '@vben/request';
import type { Dayjs } from 'dayjs';
 
import { requestClient } from '#/api/request';
 
export namespace InfraStudentApi {
  /** 学生信息 */
  export interface Student {
    id: number; // 编号
    name?: string; // 名字
    description?: string; // 简介
    birthday?: string | Dayjs; // 出生日期
    sex?: number; // 性别
    enabled?: boolean; // 是否有效
    avatar?: string; // 头像
    video?: string; // 附件
    memo?: string; // 备注
  }
}
 
/** 查询学生分页 */
export function getStudentPage(params: PageParam) {
  return requestClient.get<PageResult<InfraStudentApi.Student>>(
    '/infra/student/page',
    { params },
  );
}
 
/** 查询学生详情 */
export function getStudent(id: number) {
  return requestClient.get<InfraStudentApi.Student>(
    `/infra/student/get?id=${id}`,
  );
}
 
/** 新增学生 */
export function createStudent(data: InfraStudentApi.Student) {
  return requestClient.post('/infra/student/create', data);
}
 
/** 修改学生 */
export function updateStudent(data: InfraStudentApi.Student) {
  return requestClient.put('/infra/student/update', data);
}
 
/** 删除学生 */
export function deleteStudent(id: number) {
  return requestClient.delete(`/infra/student/delete?id=${id}`);
}
 
/** 批量删除学生 */
export function deleteStudentList(ids: number[]) {
  return requestClient.delete(
    `/infra/student/delete-list?ids=${ids.join(',')}`,
  );
}
 
/** 导出学生 */
export function exportStudent(params: any) {
  return requestClient.download('/infra/student/export-excel', { params });
}