Blame view

src/pages/ZoNing/components/constant.tsx 581 Bytes
PurelzMgnead authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { List } from 'lodash';

export type zoningItem = {
  id: number; //id
  zoning: string; //区域名称
  orderProvinceVoList: List<provinceItem>; //所包含的省份列表
  orderUserVoList: List<userItem>; //所包含的销售列表
};

export type zoningShowItem = {
  id: number; //id
  zoning: string; //区域名称
  orderProvinceShowList: string; //所包含的省份列表
  orderUserShowList: string; //所包含的销售列表
};

export type provinceItem = {
  pId: number;
  province: string;
};

export type userItem = {
  uId: number;
  userName: string;
};