price analysis

This commit is contained in:
2025-12-26 15:18:31 +08:00
parent 7743cdc29a
commit a718ac7874
15 changed files with 985 additions and 132 deletions

View File

@@ -7,6 +7,7 @@ export namespace FeatureApi {
id: number;
api_id: string;
name: string;
cost_price: number;
create_time: string;
update_time: string;
}
@@ -19,11 +20,13 @@ export namespace FeatureApi {
export interface CreateFeatureRequest {
api_id: string;
name: string;
cost_price: number;
}
export interface UpdateFeatureRequest {
api_id?: string;
name?: string;
cost_price?: number;
}
export interface FeatureExampleItem {

View File

@@ -61,6 +61,10 @@ export namespace ProductApi {
export interface UpdateProductFeaturesRequest {
features: ProductFeatureItem[];
}
export interface UpdateProductFeaturesResponse {
success: boolean;
}
}
/**