data.d.ts 394 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
export interface BasicGood {
陈帅's avatar
陈帅 committed
2
  id: string;
陈帅's avatar
陈帅 committed
3 4 5 6 7
  name?: string;
  barcode?: string;
  price?: string;
  num?: string | number;
  amount?: string | number;
陈帅's avatar
陈帅 committed
8 9
}

陈帅's avatar
陈帅 committed
10
export interface BasicProgress {
陈帅's avatar
陈帅 committed
11 12 13 14 15 16 17 18
  key: string;
  time: string;
  rate: string;
  status: string;
  operator: string;
  cost: string;
}

陈帅's avatar
陈帅 committed
19
export interface BasicProfileDataType {
陈帅's avatar
陈帅 committed
20 21 22
  basicGoods: BasicGood[];
  basicProgress: BasicProgress[];
}