@ningboyz/types 1.2.149 → 1.2.151

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.2.149",
4
+ "version": "1.2.151",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -1,19 +1,25 @@
1
1
  export const CONST_HZNK_DATA_DATA_TYPE_TO_个人荣誉 = 1001;
2
2
  export const CONST_HZNK_DATA_DATA_TYPE_TO_人才称号 = 1002;
3
3
 
4
- export const CONST_HZNK_DATA_DATA_TYPE_TO_知识产权 = 1003;
5
- export const CONST_HZNK_DATA_DATA_TYPE_TO_论文著作 = 1004;
6
- export const CONST_HZNK_DATA_DATA_TYPE_TO_软著专利 = 1005;
7
- export const CONST_HZNK_DATA_DATA_TYPE_TO_品种技术 = 1017;
8
- export const CONST_HZNK_DATA_DATA_TYPE_TO_发布标准 = 1006;
9
- export const CONST_HZNK_DATA_DATA_TYPE_TO_获奖申请 = 1007;
10
- export const CONST_HZNK_DATA_DATA_TYPE_TO_获奖成果 = 1008;
11
- export const CONST_HZNK_DATA_DATA_TYPE_TO_领导批示 = 1009;
4
+ // #Note
5
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_实施方案 = 1001; //#实施方案
6
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_工作计划 = 1002; //#工作计划
7
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_工作总结 = 1003; //#工作总结
8
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_年终汇报 = 1004; //#年终汇报
12
9
 
13
- export const CONST_HZNK_DATA_DATA_TYPE_TO_信息宣传 = 1010;
14
- export const CONST_HZNK_DATA_DATA_TYPE_TO_对口帮扶 = 1011;
15
- export const CONST_HZNK_DATA_DATA_TYPE_TO_对外培训 = 1012;
16
- export const CONST_HZNK_DATA_DATA_TYPE_TO_科技特派 = 1013;
17
- export const CONST_HZNK_DATA_DATA_TYPE_TO_学术交流 = 1014;
18
- export const CONST_HZNK_DATA_DATA_TYPE_TO_平台创建 = 1015;
19
- export const CONST_HZNK_DATA_DATA_TYPE_TO_创建团队 = 1016;
10
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_知识产权 = 1003
11
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_论文著作 = 1004
12
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_软著专利 = 1005
13
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_品种技术 = 1017
14
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_发布标准 = 1006
15
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_获奖申请 = 1007
16
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_获奖成果 = 1008
17
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_领导批示 = 1009
18
+
19
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_信息宣传 = 1010
20
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_对口帮扶 = 1011
21
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_对外培训 = 1012
22
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_科技特派 = 1013
23
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_学术交流 = 1014
24
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_平台创建 = 1015
25
+ export const CONST_HZNK_DATA_DATA_TYPE_TO_创建团队 = 1016
@@ -77,3 +77,12 @@ export const CONST_MYOA_MAIN_MYOA_CODE_固定资产_公物仓领用 = "GWCLY"; /
77
77
 
78
78
  export const CONST_MYOA_MAIN_MYOA_TYPC_固定资产_公物仓入仓 = 1011; //#公物仓入仓
79
79
  export const CONST_MYOA_MAIN_MYOA_TYPC_固定资产_公物仓领用 = 1012; //#公物仓领用
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
@@ -80,6 +80,19 @@ export interface IHznkBaseResponse {
80
80
  dContact: string;
81
81
  /** 申请总金额 */
82
82
  totalVal: number;
83
+
84
+ coverURL: string;
85
+ touchURL: string;
86
+ unitText: string;
87
+ sourceDW: string;
88
+
89
+ lastDate: number;
90
+ lastTime: number;
91
+ flowStat: number;
92
+ didFirst: number;
93
+ lastMemo: string;
94
+ userName: string;
95
+ userGUID: string;
83
96
 
84
97
  /**附件 */
85
98
  listPath: IPathResponse[];
@@ -148,6 +161,19 @@ export class THznkBaseResponse implements IHznkBaseResponse {
148
161
  wContact: string = "";
149
162
  dContact: string = "";
150
163
  totalVal: number = 0;
164
+
165
+ coverURL: string = "";
166
+ touchURL: string = "";
167
+ unitText: string = "";
168
+ sourceDW: string = "";
169
+
170
+ lastDate: number = 0;
171
+ lastTime: number = 0;
172
+ flowStat: number = 0;
173
+ didFirst: number = 0;
174
+ lastMemo: string = "";
175
+ userName: string = "";
176
+ userGUID: string = "";
151
177
 
152
178
  listPath: IPathResponse[] = [];
153
179
  listNBYH: IUserLiteResponse[] = [];
@@ -1,3 +1,5 @@
1
+ import { IUserLiteResponse } from "../core";
2
+
1
3
  export interface IHznkDataItemResponse {
2
4
  whoBuild: number;
3
5
  userIndx: number;
@@ -21,6 +23,11 @@ export interface IHznkDataItemResponse {
21
23
  userName: string;
22
24
  ratioVal: number;
23
25
  totalVal: number;
26
+ dictMain: number;
27
+ dictName: string;
28
+
29
+ /**人员列表 */
30
+ listUser: IUserLiteResponse[];
24
31
  }
25
32
 
26
33
  export class THznkDataItemResponse implements IHznkDataItemResponse {
@@ -46,4 +53,8 @@ export class THznkDataItemResponse implements IHznkDataItemResponse {
46
53
  userName: string = "";
47
54
  ratioVal: number = 0;
48
55
  totalVal: number = 0;
56
+ dictMain: number = 0;
57
+ dictName: string = "";
58
+
59
+ listUser: IUserLiteResponse[] = [];
49
60
  }
@@ -0,0 +1,51 @@
1
+ export interface IHznkFytqBillResponse {
2
+ whoBuild: number;
3
+ userIndx: number;
4
+ fytqIndx: number;
5
+ idEntity: number;
6
+ dataStat: number;
7
+ dataHide: number;
8
+ dataOrdr: number;
9
+ dataFrom: number;
10
+ dataDate: number;
11
+ dataTime: number;
12
+ createBy: string;
13
+ createAt: number;
14
+ updateBy: string;
15
+ updateAt: number;
16
+ deleteBy: string;
17
+ deleteAt: number;
18
+ queuesBy: number;
19
+ billFrom: number;
20
+ totalVal: number;
21
+ outMoney: number;
22
+ outReady: number;
23
+ aplMoney: number;
24
+ billMemo: string;
25
+ }
26
+
27
+ export class THznkFytqBillResponse implements IHznkFytqBillResponse {
28
+ whoBuild: number = 0;
29
+ userIndx: number = 0;
30
+ fytqIndx: number = 0;
31
+ idEntity: number = 0;
32
+ dataStat: number = 0;
33
+ dataHide: number = 0;
34
+ dataOrdr: number = 0;
35
+ dataFrom: number = 0;
36
+ dataDate: number = 0;
37
+ dataTime: number = 0;
38
+ createBy: string = "";
39
+ createAt: number = 0;
40
+ updateBy: string = "";
41
+ updateAt: number = 0;
42
+ deleteBy: string = "";
43
+ deleteAt: number = 0;
44
+ queuesBy: number = 0;
45
+ billFrom: number = 0;
46
+ totalVal: number = 0;
47
+ outMoney: number = 0;
48
+ outReady: number = 0;
49
+ aplMoney: number = 0;
50
+ billMemo: string = "";
51
+ }
@@ -0,0 +1,144 @@
1
+ import { IUserAcnoResponse } from "../core";
2
+ import { IPathResponse } from "../core/IPathResponse";
3
+ import { IHznkFytqBillResponse } from "./IHznkFytqBillResponse";
4
+ import { IHznkMainResponse } from "./IHznkMainResponse";
5
+
6
+ export interface IHznkFytqResponse {
7
+ whoBuild: number;
8
+ userIndx: number;
9
+ fytqIndx: number;
10
+ parentID: number;
11
+ hashCode: number;
12
+ dataLevl: number;
13
+ dataFrom: number;
14
+ kjndKJQJ: number;
15
+ dataStat: number;
16
+ dataOrdr: number;
17
+ dataHide: number;
18
+ dataType: number;
19
+ dataDate: number;
20
+ dataTime: number;
21
+ dataGUID: string;
22
+ userMain: number;
23
+ mastName: string;
24
+ mastGUID: string;
25
+ createBy: string;
26
+ createAt: number;
27
+ updateBy: string;
28
+ updateAt: number;
29
+ deleteBy: string;
30
+ deleteAt: number;
31
+ queuesBy: number;
32
+ entityID: string;
33
+ sourceND: number;
34
+ menuMain: number;
35
+ menuUUID: string;
36
+ unitMain: number;
37
+ deptMain: number;
38
+ sqyhMain: number;
39
+ sqyhText: string;
40
+ sqbmText: string;
41
+ flowUndo: number;
42
+ flowUser: string;
43
+ flowText: string;
44
+ fytqDate: number;
45
+ fytqStat: number;
46
+ /**项目名称 */
47
+ baseName: string;
48
+ /**项目编码 */
49
+ baseCode: string;
50
+ /**申请理由 */
51
+ baseUses: string;
52
+ /**备注信息 */
53
+ baseMemo: string;
54
+ /**是否已提交档案 */
55
+ diskStat: number;
56
+
57
+ coverURL: string;
58
+ touchURL: string;
59
+ unitText: string;
60
+ sourceDW: string;
61
+
62
+ lastDate: number;
63
+ lastTime: number;
64
+ flowMain: number;
65
+ flowNode: number;
66
+ flowStat: number;
67
+ didFirst: number;
68
+ lastMemo: string;
69
+ userName: string;
70
+ userGUID: string;
71
+ /**附件 */
72
+ listPath: IPathResponse[];
73
+ /**关联项目 */
74
+ listFrom: IHznkMainResponse[];
75
+ listSKDW: IUserAcnoResponse[];
76
+ listBill: IHznkFytqBillResponse[];
77
+ }
78
+
79
+ export class THznkFytqResponse implements IHznkFytqResponse {
80
+ whoBuild: number = 0;
81
+ userIndx: number = 0;
82
+ fytqIndx: number = 0;
83
+ parentID: number = 0;
84
+ hashCode: number = 0;
85
+ dataLevl: number = 0;
86
+ dataFrom: number = 0;
87
+ kjndKJQJ: number = 0;
88
+ dataStat: number = 0;
89
+ dataOrdr: number = 0;
90
+ dataHide: number = 0;
91
+ dataType: number = 0;
92
+ dataDate: number = 0;
93
+ dataTime: number = 0;
94
+ dataGUID: string = "";
95
+ userMain: number = 0;
96
+ mastName: string = "";
97
+ mastGUID: string = "";
98
+ createBy: string = "";
99
+ createAt: number = 0;
100
+ updateBy: string = "";
101
+ updateAt: number = 0;
102
+ deleteBy: string = "";
103
+ deleteAt: number = 0;
104
+ queuesBy: number = 0;
105
+ entityID: string = "";
106
+ sourceND: number = 0;
107
+ menuMain: number = 0;
108
+ menuUUID: string = "";
109
+ unitMain: number = 0;
110
+ deptMain: number = 0;
111
+ sqyhMain: number = 0;
112
+ sqyhText: string = "";
113
+ sqbmText: string = "";
114
+ flowUndo: number = 0;
115
+ flowUser: string = "";
116
+ flowText: string = "";
117
+ fytqDate: number = 0;
118
+ fytqStat: number = 0;
119
+ baseName: string = "";
120
+ baseCode: string = "";
121
+ baseUses: string = "";
122
+ baseMemo: string = "";
123
+ diskStat: number = 0;
124
+
125
+ coverURL: string = "";
126
+ touchURL: string = "";
127
+ unitText: string = "";
128
+ sourceDW: string = "";
129
+
130
+ lastDate: number = 0;
131
+ lastTime: number = 0;
132
+ flowMain: number = 0;
133
+ flowNode: number = 0;
134
+ flowStat: number = 0;
135
+ didFirst: number = 0;
136
+ lastMemo: string = "";
137
+ userName: string = "";
138
+ userGUID: string = "";
139
+
140
+ listPath: IPathResponse[] = [];
141
+ listFrom: IHznkMainResponse[] = [];
142
+ listSKDW: IUserAcnoResponse[] = [];
143
+ listBill: IHznkFytqBillResponse[] = [];
144
+ }
@@ -91,6 +91,19 @@ export interface IHznkMainResponse {
91
91
  wContact: string;
92
92
  /**联系方式 */
93
93
  dContact: string;
94
+
95
+ coverURL: string;
96
+ touchURL: string;
97
+ unitText: string;
98
+ sourceDW: string;
99
+
100
+ lastDate: number;
101
+ lastTime: number;
102
+ flowStat: number;
103
+ didFirst: number;
104
+ lastMemo: string;
105
+ userName: string;
106
+ userGUID: string;
94
107
 
95
108
  /**附件 */
96
109
  listPath: IPathResponse[];
@@ -170,6 +183,19 @@ export class THznkMainResponse implements IHznkMainResponse {
170
183
  wContact: string = "";
171
184
  dContact: string = "";
172
185
 
186
+ coverURL: string = "";
187
+ touchURL: string = "";
188
+ unitText: string = "";
189
+ sourceDW: string = "";
190
+
191
+ lastDate: number = 0;
192
+ lastTime: number = 0;
193
+ flowStat: number = 0;
194
+ didFirst: number = 0;
195
+ lastMemo: string = "";
196
+ userName: string = "";
197
+ userGUID: string = "";
198
+
173
199
  listPath: IPathResponse[] = [];
174
200
  listNBYH: IUserLiteResponse[] = [];
175
201
  listWBYH: IUserLiteResponse[] = [];
@@ -41,9 +41,13 @@ export interface IHznkNoteResponse {
41
41
  flowText: string;
42
42
  noteDate: number;
43
43
  noteStat: number;
44
+ /**项目名称 */
44
45
  baseName: string;
46
+ /**项目编码 */
45
47
  baseCode: string;
48
+ /**申请理由 */
46
49
  baseUses: string;
50
+ /**备注信息 */
47
51
  baseMemo: string;
48
52
 
49
53
  /**附件 */
@@ -91,9 +95,13 @@ export class THznkNoteResponse implements IHznkNoteResponse {
91
95
  flowText: string = "";
92
96
  noteDate: number = 0;
93
97
  noteStat: number = 0;
98
+ /**项目名称 */
94
99
  baseName: string = "";
100
+ /**项目编码 */
95
101
  baseCode: string = "";
102
+ /**申请理由 */
96
103
  baseUses: string = "";
104
+ /**备注信息 */
97
105
  baseMemo: string = "";
98
106
 
99
107
  listPath: IPathResponse[] = [];
@@ -17,9 +17,13 @@ export interface IHznkXmysItemResponse {
17
17
  deleteBy: string;
18
18
  deleteAt: number;
19
19
  queuesBy: number;
20
+ /**标识 */
20
21
  userMain: number;
22
+ /**姓名 */
21
23
  userName: string;
24
+ /**比例 */
22
25
  ratioVal: number;
26
+ /**分值 */
23
27
  totalVal: number;
24
28
  }
25
29
 
@@ -43,11 +43,31 @@ export interface IHznkXmysResponse {
43
43
  flowText: string;
44
44
  xmysDate: number;
45
45
  xmysStat: number;
46
+ /**项目名称 */
46
47
  baseName: string;
48
+ /**项目编码 */
47
49
  baseCode: string;
50
+ /**申请理由 */
48
51
  baseUses: string;
52
+ /**备注信息 */
49
53
  baseMemo: string;
50
- diskStat: number;
54
+ /**是否已提交档案 */
55
+ diskStat: number;
56
+
57
+ coverURL: string;
58
+ touchURL: string;
59
+ unitText: string;
60
+ sourceDW: string;
61
+
62
+ lastDate: number;
63
+ lastTime: number;
64
+ flowMain: number;
65
+ flowNode: number;
66
+ flowStat: number;
67
+ didFirst: number;
68
+ lastMemo: string;
69
+ userName: string;
70
+ userGUID: string;
51
71
 
52
72
  /**附件 */
53
73
  listPath: IPathResponse[];
@@ -103,6 +123,21 @@ export class THznkXmysResponse implements IHznkXmysResponse {
103
123
  baseMemo: string = "";
104
124
  diskStat: number = 0;
105
125
 
126
+ coverURL: string = "";
127
+ touchURL: string = "";
128
+ unitText: string = "";
129
+ sourceDW: string = "";
130
+
131
+ lastDate: number = 0;
132
+ lastTime: number = 0;
133
+ flowMain: number = 0;
134
+ flowNode: number = 0;
135
+ flowStat: number = 0;
136
+ didFirst: number = 0;
137
+ lastMemo: string = "";
138
+ userName: string = "";
139
+ userGUID: string = "";
140
+
106
141
  listPath: IPathResponse[] = [];
107
142
  listFrom: IHznkMainResponse[] = [];
108
143
  listItem: IHznkXmysItemResponse[] = [];
@@ -41,11 +41,31 @@ export interface IHznkYssqResponse {
41
41
  flowText: string;
42
42
  yssqDate: number;
43
43
  yssqStat: number;
44
+ /**项目名称 */
44
45
  baseName: string;
46
+ /**项目编码 */
45
47
  baseCode: string;
48
+ /**申请理由 */
46
49
  baseUses: string;
50
+ /**备注信息 */
47
51
  baseMemo: string;
48
- diskStat: number;
52
+ /**是否已提交档案 */
53
+ diskStat: number;
54
+
55
+ coverURL: string;
56
+ touchURL: string;
57
+ unitText: string;
58
+ sourceDW: string;
59
+
60
+ lastDate: number;
61
+ lastTime: number;
62
+ flowMain: number;
63
+ flowNode: number;
64
+ flowStat: number;
65
+ didFirst: number;
66
+ lastMemo: string;
67
+ userName: string;
68
+ userGUID: string;
49
69
 
50
70
  /**附件 */
51
71
  listPath: IPathResponse[];
@@ -99,6 +119,21 @@ export class THznkYssqResponse implements IHznkYssqResponse {
99
119
  baseMemo: string = "";
100
120
  diskStat: number = 0;
101
121
 
122
+ coverURL: string = "";
123
+ touchURL: string = "";
124
+ unitText: string = "";
125
+ sourceDW: string = "";
126
+
127
+ lastDate: number = 0;
128
+ lastTime: number = 0;
129
+ flowMain: number = 0;
130
+ flowNode: number = 0;
131
+ flowStat: number = 0;
132
+ didFirst: number = 0;
133
+ lastMemo: string = "";
134
+ userName: string = "";
135
+ userGUID: string = "";
136
+
102
137
  listPath: IPathResponse[] = [];
103
138
  listFrom: IHznkMainResponse[] = [];
104
139
  }
package/src/hznk/index.ts CHANGED
@@ -27,6 +27,10 @@ import { IHznkXmysResponse, THznkXmysResponse } from "./IHznkXmysResponse";
27
27
  import { IHznkXmysItemResponse, THznkXmysItemResponse } from "./IHznkXmysItemResponse";
28
28
  import { IHznkXmysYsxqResponse, THznkXmysYsxqResponse } from "./IHznkXmysYsxqResponse";
29
29
 
30
+ import { IHznkFytqResponse, THznkFytqResponse } from "./IHznkFytqResponse";
31
+ import { IHznkFytqBillResponse, THznkFytqBillResponse } from "./IHznkFytqBillResponse";
32
+
33
+
30
34
  export {
31
35
  THznkDataResponse,
32
36
  THznkDataEachResponse,
@@ -51,6 +55,8 @@ export {
51
55
  THznkXmysResponse,
52
56
  THznkXmysItemResponse,
53
57
  THznkXmysYsxqResponse,
58
+ THznkFytqResponse,
59
+ THznkFytqBillResponse,
54
60
  type IHznkDataResponse,
55
61
  type IHznkDataEachResponse,
56
62
  type IHznkDataPathResponse,
@@ -73,5 +79,7 @@ export {
73
79
  type IHznkYssqResponse,
74
80
  type IHznkXmysResponse,
75
81
  type IHznkXmysItemResponse,
76
- type IHznkXmysYsxqResponse
82
+ type IHznkXmysYsxqResponse,
83
+ type IHznkFytqResponse,
84
+ type IHznkFytqBillResponse,
77
85
  };
package/src/yzht/index.ts CHANGED
@@ -3,6 +3,8 @@ import { IYzhtGlfdResponse, TYzhtGlfdResponse } from "./IYzhtGlfdResponse";
3
3
  import { IYzhtGlpzResponse, TYzhtGlpzResponse } from "./IYzhtGlpzResponse";
4
4
  import { IYzhtGlzdResponse, TYzhtGlzdResponse } from "./IYzhtGlzdResponse";
5
5
  import { IYzhtMainResponse, TYzhtMainResponse } from "./IYzhtMainResponse";
6
+ import { IYzhtDzmxResponse, TYzhtDzmxResponse } from "./IYzhtDzmxResponse";
7
+ import { IYzhtFymxResponse, TYzhtFymxResponse } from "./IYzhtFymxResponse";
6
8
 
7
9
  export {
8
10
  TYzhtBillResponse,
@@ -10,9 +12,13 @@ export {
10
12
  TYzhtGlpzResponse,
11
13
  TYzhtGlzdResponse,
12
14
  TYzhtMainResponse,
15
+ TYzhtDzmxResponse,
16
+ TYzhtFymxResponse,
13
17
  type IYzhtBillResponse,
14
18
  type IYzhtGlfdResponse,
15
19
  type IYzhtGlpzResponse,
16
20
  type IYzhtGlzdResponse,
17
- type IYzhtMainResponse
21
+ type IYzhtMainResponse,
22
+ type IYzhtDzmxResponse,
23
+ type IYzhtFymxResponse
18
24
  };