fengxiang
2018-03-23 40951bf70651c38d09a3b1f5eaddde8faa9e8c06
src/app/business/entity/grid.ts
@@ -83,7 +83,7 @@
        );
        this.selectedIndexs = this.selectedIndexs == null ? [] : this.selectedIndexs;
      }
    constructor(config: object) {
    constructor(config?: object) {
        if (config != null) {
            const keys = Object.getOwnPropertyNames(config);
            for (const index in keys) {
@@ -111,3 +111,8 @@
        return arr;
    }
}
export interface ResultBean<T> {
  code?: number;
  data?: T;
  message?: string;
}