feat: 🚀 订阅功能

This commit is contained in:
2025-09-16 16:38:30 +08:00
parent eb1b66a066
commit d3a3ef2911
456 changed files with 40544 additions and 124 deletions

View 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;
}
}