feat: 🚀 订阅功能
This commit is contained in:
19
src/api/interface/global.ts
Normal file
19
src/api/interface/global.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
// 全局模块
|
||||
export namespace Global {
|
||||
//供应链
|
||||
export interface ResSupplier {
|
||||
id: number;
|
||||
code: string;
|
||||
name: string;
|
||||
disable: boolean;
|
||||
}
|
||||
|
||||
//用户
|
||||
export interface ResUserList {
|
||||
id: number;
|
||||
code: null;
|
||||
name: string;
|
||||
number: number;
|
||||
disable: boolean;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user