export interface BidFormData {
	goodsId: string;
	bid: string;
	taskType: 0 | 1;
	params: Record<string, any>;
	name?: string;
	id?: number;
}
