I have an interface like this:
我有这样的界面:
interface Response {
items: {
productId: string;
productName: string;
price: number;
}[]
}
interface APIResponse {
items: {
productId: string;
productName: string;
price: number;
factoryId: string,
status: number,
category: number,
priority: number
}[]
}
int