@ningboyz/types 1.4.156 → 1.4.158

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.4.156",
4
+ "version": "1.4.158",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -0,0 +1,55 @@
1
+ export interface ISysKjndResponse {
2
+ createAt: number;
3
+ createBy: string;
4
+ dataDate: number;
5
+ dataFrom: number;
6
+ dataGUID: string;
7
+ dataHide: number;
8
+ dataLevl: number;
9
+ dataOrdr: number;
10
+ dataStat: number;
11
+ dataTime: number;
12
+ deleteAt: number;
13
+ deleteBy: string;
14
+ entityID: string;
15
+ hasEnded: number;
16
+ hashCode: number;
17
+ kjndKJQJ: number;
18
+ mastGUID: string;
19
+ mastName: string;
20
+ parentID: number;
21
+ queuesBy: number;
22
+ sourceND: number;
23
+ updateAt: number;
24
+ updateBy: string;
25
+ userIndx: number;
26
+ whoBuild: number;
27
+ }
28
+
29
+ export class TSysKjndResponse implements ISysKjndResponse {
30
+ createAt: number = 0;
31
+ createBy: string = "";
32
+ dataDate: number = 0;
33
+ dataFrom: number = 0;
34
+ dataGUID: string = "";
35
+ dataHide: number = 0;
36
+ dataLevl: number = 0;
37
+ dataOrdr: number = 0;
38
+ dataStat: number = 0;
39
+ dataTime: number = 0;
40
+ deleteAt: number = 0;
41
+ deleteBy: string = "";
42
+ entityID: string = "";
43
+ hasEnded: number = 0;
44
+ hashCode: number = 0;
45
+ kjndKJQJ: number = 0;
46
+ mastGUID: string = "";
47
+ mastName: string = "";
48
+ parentID: number = 0;
49
+ queuesBy: number = 0;
50
+ sourceND: number = 0;
51
+ updateAt: number = 0;
52
+ updateBy: string = "";
53
+ userIndx: number = 0;
54
+ whoBuild: number = 0;
55
+ }
package/src/core/index.ts CHANGED
@@ -21,8 +21,9 @@ import { IUserPartResponse, TUserPartResponse } from "./IUserPartResponse";
21
21
  import { IUserSzdwResponse, TUserSzdwResponse } from "./IUserSzdwResponse";
22
22
  import { ICoreValidResponse, TCoreValidResponse } from "./ICoreValidResponse";
23
23
  import { ISysTravelResponse, TSysTravelResponse, ISysTravelWithParaResponse, TSysTravelWithParaResponse } from "./ISysTravelResponse";
24
- import { IWebSocketResponse, TWebSocketResponse } from "./IWebSocketResponse"
24
+ import { IWebSocketResponse, TWebSocketResponse } from "./IWebSocketResponse";
25
25
  import { IDeptBindResponse, TDeptBindResponse } from "./IDeptBindResponse";
26
+ import { ISysKjndResponse, TSysKjndResponse } from "./ISysKjndResponse";
26
27
 
27
28
  export {
28
29
  type ICoreValidResponse,
@@ -52,6 +53,7 @@ export {
52
53
  type IUserPartResponse,
53
54
  type IWebSocketResponse,
54
55
  type IDeptBindResponse,
56
+ type ISysKjndResponse,
55
57
 
56
58
  // 类
57
59
  TCoreValidResponse,
@@ -79,5 +81,6 @@ export {
79
81
  TUserSzdwResponse,
80
82
  TUserPartResponse,
81
83
  TWebSocketResponse,
82
- TDeptBindResponse
84
+ TDeptBindResponse,
85
+ TSysKjndResponse
83
86
  };
@@ -71,6 +71,8 @@ export interface IHznjBaseResponse {
71
71
  lastMemo: string;
72
72
  userName: string;
73
73
  userGUID: string;
74
+ /** 任务名称链 */
75
+ k7kmFull: string;
74
76
 
75
77
  /**附件 */
76
78
  listPath: TCore.IPathResponse[];
@@ -143,6 +145,7 @@ export class THznjBaseResponse implements Type {
143
145
  lastMemo: string = "";
144
146
  userName: string = "";
145
147
  userGUID: string = "";
148
+ k7kmFull: string = "";
146
149
 
147
150
  listPath: TCore.IPathResponse[] = [];
148
151
  listItem: THznj.IHznjBaseItemResponse[] = [];
@@ -33,6 +33,8 @@ export interface IJapzK7kmResponse {
33
33
  k7kmKmbm: string;
34
34
  /** 任务名称 */
35
35
  k7kmKmmc: string;
36
+ /** 任务名称链 */
37
+ nameFull: string;
36
38
  parentCD: string;
37
39
 
38
40
  /**检测项目 */
@@ -68,6 +70,7 @@ export class TJapzK7kmResponse implements IJapzK7kmResponse {
68
70
  entityID: string = "";
69
71
  k7kmKmbm: string = "";
70
72
  k7kmKmmc: string = "";
73
+ nameFull: string = "";
71
74
  parentCD: string = "";
72
75
 
73
76
  /**检测项目 */