fix:精选描述

This commit is contained in:
yy
2025-04-24 18:37:17 +08:00
parent e420f518b5
commit 6ce4e857ab
3 changed files with 399 additions and 374 deletions

View File

@@ -1,25 +1,26 @@
declare namespace API.ApplicationProducts {
export interface result {
total: number;
rows: Product[];
code: number;
msg: string;
}
export interface Product {
createTime: string;
companyCardId: number;
name: string;
companyNature: string;
backgroudColor: string;
status: number;
}
export interface Params {
companyCardId?: number;
name?: string;
companyNature?: string;
backgroudColor?: string;
status?: number;
}
}
declare namespace API.ApplicationProducts {
export interface result {
total: number;
rows: Product[];
code: number;
msg: string;
}
export interface Product {
createTime: string;
companyCardId?: number;
name: string;
description?:string;
companyNature: string;
backgroudColor: string;
status: number;
}
export interface Params {
companyCardId?: number;
name?: string;
companyNature?: string;
backgroudColor?: string;
status?: number;
}
}