feat(M08-D): 补多小程序与租户配置
This commit is contained in:
@@ -437,6 +437,39 @@ export interface DeviceTopology {
|
||||
maintenance: DeviceMaintenance[];
|
||||
}
|
||||
|
||||
export interface PlatformApplication {
|
||||
platformAppId: string;
|
||||
appId: string;
|
||||
appName: string;
|
||||
appStatus: 'ACTIVE' | 'DISABLED';
|
||||
bindingStatus: 'ACTIVE' | 'DISABLED';
|
||||
isDefault: boolean;
|
||||
brandName: string;
|
||||
logoUrl: string;
|
||||
themeColor: string;
|
||||
servicePhone: string;
|
||||
franchisePhone: string;
|
||||
shareTitle: string;
|
||||
shareImageUrl: string;
|
||||
defaultStoreId: string | null;
|
||||
extraConfig: Record<string, unknown>;
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
export interface TenantApplicationConfig {
|
||||
brandName: string;
|
||||
logoUrl: string;
|
||||
themeColor: string;
|
||||
servicePhone: string;
|
||||
franchisePhone: string;
|
||||
shareTitle: string;
|
||||
shareImageUrl: string;
|
||||
defaultStoreId: string | null;
|
||||
extraConfig: Record<string, unknown>;
|
||||
bindingStatus: 'ACTIVE' | 'DISABLED';
|
||||
isDefault: boolean;
|
||||
}
|
||||
|
||||
export interface CleaningTask {
|
||||
id: string;
|
||||
taskNo: string;
|
||||
|
||||
Reference in New Issue
Block a user