constant.tsx 581 Bytes
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;
};