@ningboyz/types 1.6.142 → 1.6.144

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.6.142",
4
+ "version": "1.6.144",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -2,6 +2,8 @@ import { TCore } from "../index.ts";
2
2
  import _ from "lodash";
3
3
  import { TWithEXPDS, TWithMYOA, WithEXPDS, WithMYOA } from "./IUserResponse.ts";
4
4
  import { IPathResponsePathPara, TPathResponsePathPara } from "./IPathResponsePartPara.ts";
5
+ import { IWtuiViewResponse } from "../wtui/IWtuiViewResponse.ts";
6
+ import { IWtuiFormResponse } from "../wtui/IWtuiFormResponse.ts";
5
7
 
6
8
  export interface IPartResponse {
7
9
  whoBuild: number;
@@ -49,6 +51,9 @@ export interface IPartResponse {
49
51
  listUserWhenExpd: number;
50
52
  /** 内部管理:允许查看请假统计 */
51
53
  asLeaderWhenMYOA: number;
54
+
55
+ get4View: IWtuiFormResponse[];
56
+ get4Form: IWtuiViewResponse[];
52
57
  }
53
58
 
54
59
  export class TPartResponse implements IPartResponse {
@@ -93,6 +98,9 @@ export class TPartResponse implements IPartResponse {
93
98
  listUserGet4Part: string = "";
94
99
  listUserWhenExpd: number = 0;
95
100
  asLeaderWhenMYOA: number = 0;
101
+
102
+ get4View: IWtuiFormResponse[] = [];
103
+ get4Form: IWtuiViewResponse[] = [];
96
104
 
97
105
  static parseJson(partPara: string) {
98
106
  const defaultPathPara = new TPathResponsePathPara();