fengxiang
2018-01-04 72120bbe920425f80d3beb08c08af24151246006
src/app/core/entity/grid.ts
@@ -1,5 +1,11 @@
import { Column } from '@core/entity/grid';
import { Types } from '@core/enum/types.enum';
export interface AreaNames {
    provinceName?: string;
    cityName?: string;
    areaName?: string;
}
export interface Column {
   text?: string;
   name?: string;
@@ -7,6 +13,7 @@
   sort?: string;
   isSort?: boolean;
   type?: DataType;
   format?: Function;
}
export interface DataType {
    name: Types;