@ningboyz/types 1.1.126 → 1.1.128

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.1.126",
3
+ "version": "1.1.128",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "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 IYzpzItemResponse {
5
+ export interface IYzpzItemResponse extends IBaseResponse<IYzpzItemResponse[]> {
5
6
  whoBuild: number;
6
7
  userIndx: number;
7
8
  sourceND: number;
@@ -37,7 +38,7 @@ export interface IYzpzItemResponse {
37
38
  deptText: string;
38
39
  }
39
40
 
40
- export class TYzpzItemResponse implements IYzpzItemResponse {
41
+ export class TYzpzItemResponse extends TBaseResponse<IYzpzItemResponse[]> implements IYzpzItemResponse {
41
42
  whoBuild: number = 0;
42
43
  userIndx: number = 0;
43
44
  sourceND: number = 0;