ops供应链系统迁移

This commit is contained in:
2025-05-09 17:32:57 +08:00
parent 49ea17df65
commit 405a45c002
332 changed files with 50221 additions and 124 deletions

44
src/api/interface/user.ts Normal file
View File

@@ -0,0 +1,44 @@
// 用户管理模块
export namespace User {
// 获取组织list
export interface ResUserOrgs {
id: number;
orgCode: string;
name: string;
orgType: string;
standardCoin: string;
standardCoinId: number;
autoDetaultStockId: number;
disable: boolean;
}
export interface ResUserDept {
id: number;
name: string;
pid: number;
managerId: null;
disable: boolean;
children: ResUserDept[];
}
export interface ResWarehouse {
id: number;
name: string;
code: null;
contacts: string;
contactsId: number;
useOrgId: null;
customerWarehouseTag: boolean;
tempTransferWarehouse: number;
defaultReplenishCustomer: number;
customerId: number;
stockType: number;
disable: boolean;
}
//获取组织下的用户
export interface ResUserList {
id: number;
code: null;
name: string;
number: number;
disable: boolean;
}
}