---初始化后台管理web页面项目

This commit is contained in:
2025-08-20 14:39:30 +08:00
parent ad49711a7e
commit 87545a8baf
2057 changed files with 282864 additions and 213 deletions

View File

@ -0,0 +1,36 @@
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
export interface authPageListParams {
keyword?: string; //关键字
}
/**
* @description: Request list interface parameters
*/
export type AuthPageListSearchModel = BasicPageParams & authPageListParams;
export interface AuthPageListModel {
code: string; //编码
name: string; //名称
authType: string; //对象类型
createUserName: number; //创建人
remark: string; //备注
}
/**
* @description: Request list return value
*/
export type AuthPageListResultModel = BasicFetchResult<AuthPageListModel>;
export interface AuthModel {
data: authConfig;
}
interface authConfig {
name: string;
objectIdList: string;
remark?: string;
code: string;
authType: number;
authMethod: number;
authFormula: string;
}