chore: remove large file and update .gitignore

This commit is contained in:
Teo
2025-06-24 09:26:04 +08:00
parent 61cd9f6bcf
commit ea56ad66fa
15 changed files with 1118 additions and 80 deletions

View File

@ -3,7 +3,7 @@ import { PostForm, PostQuery, PostVO } from './types';
import { AxiosPromise } from 'axios';
// 查询岗位列表
export function listPost(query: PostQuery): AxiosPromise<PostVO[]> {
export function listPost(query: { pageNum: number; pageSize: number }): AxiosPromise<PostVO[]> {
return request({
url: '/system/post/list',
method: 'get',