@ningboyz/types 1.5.78 → 1.5.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.5.78",
4
+ "version": "1.5.80",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -1,7 +1,8 @@
1
1
  import { construct, destruct } from "@aximario/json-tree";
2
2
  import _ from "lodash";
3
+ import { IBaseResponse, TBaseResponse } from "../base/IBaseResponse";
3
4
 
4
- export interface IElemDataResponse {
5
+ export interface IElemDataResponse extends IBaseResponse<IElemDataResponse> {
5
6
  whoBuild: number;
6
7
  userIndx: number;
7
8
  dataIndx: number;
@@ -43,7 +44,7 @@ export interface IElemDataResponse {
43
44
  tablFrom: string;
44
45
  }
45
46
 
46
- export class TElemDataResponse implements IElemDataResponse {
47
+ export class TElemDataResponse extends TBaseResponse<IElemDataResponse> implements IElemDataResponse {
47
48
  whoBuild: number = 0;
48
49
  userIndx: number = 0;
49
50
  dataIndx: number = 0;
@@ -171,5 +171,5 @@ export enum TButtonType {
171
171
  /** 同步 */
172
172
  sync = "sync",
173
173
  /** 终审导出 */
174
- finalReviewExport = "终审导出"
174
+ finalReviewExport = "finalReviewExport"
175
175
  }