初始版

This commit is contained in:
2026-04-24 20:33:21 +08:00
commit f30a325bac
1214 changed files with 244577 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import type { PageParam } from '@/api';
/**
* 百色中学-分部
*/
export interface BszxBranch {
// ID
id?: number;
// 分部名称
name?: string;
// 排序(数字越小越靠前)
sortNumber?: number;
// 租户id
tenantId?: number;
}
/**
* 百色中学-分部搜索条件
*/
export interface BszxBranchParam extends PageParam {
id?: number;
keywords?: string;
}