@ningboyz/types 1.2.199 → 1.3.0

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.199",
4
+ "version": "1.3.0",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -23,5 +23,5 @@ export const CONST_HZNK_DATA_DATA_TYPE_TO_学术交流 = 1014;
23
23
  export const CONST_HZNK_DATA_DATA_TYPE_TO_平台创建 = 1015;
24
24
  export const CONST_HZNK_DATA_DATA_TYPE_TO_创建团队 = 1016;
25
25
 
26
- export const CONST_HZNK_FYTQ_DATA_TYPE_T0_管理费用 = 1001 //#管理费用
27
- export const CONST_HZNK_FYTQ_DATA_TYPE_T0_间接费用 = 1002
26
+ export const CONST_HZNK_FYTQ_DATA_TYPE_T0_管理费用 = 1001; //#管理费用
27
+ export const CONST_HZNK_FYTQ_DATA_TYPE_T0_间接费用 = 1002;
@@ -1 +1 @@
1
- export const CONST_SYS_CLASC_TO_VARY_某农科院 = 1049
1
+ export const CONST_SYS_CLASC_TO_VARY_某农科院 = 1049;
@@ -1,4 +1,3 @@
1
1
  import { IValidReponse, TValidReponse } from "./IValidReponse";
2
2
 
3
3
  export { TValidReponse, type IValidReponse };
4
-
@@ -73,7 +73,7 @@ export interface IHzcbXmssResponse {
73
73
  didFirst: number;
74
74
  lastMemo: string;
75
75
  userName: string;
76
- userGUID: string;
76
+ userGUID: string;
77
77
  flowMain: number;
78
78
  flowNode: number;
79
79
 
package/src/hzcb/index.ts CHANGED
@@ -23,8 +23,8 @@ export {
23
23
  THzcbNdjhResponse,
24
24
  THzcbNdjhBillResponse,
25
25
  THzcbXmssResponse,
26
- THzcbXmssBillResponse,
27
- THzcbTdssResponse,
26
+ THzcbXmssBillResponse,
27
+ THzcbTdssResponse,
28
28
  type IHzcbMainResponse,
29
29
  type IHzcbRypqResponse,
30
30
  type IHzcbXmtzResponse,
@@ -1,6 +1,6 @@
1
1
  import { THznj, TCore } from "..";
2
2
  import _ from "lodash";
3
- import {TFlowDataResponse} from "../flow";
3
+ import { TFlowDataResponse } from "../flow";
4
4
 
5
5
  export interface IHznjMainResponse {
6
6
  whoBuild: number;
@@ -158,7 +158,6 @@ export class THznjMainResponse implements IHznjMainResponse {
158
158
  flowMain: number = 0;
159
159
  flowNode: number = 0;
160
160
 
161
-
162
161
  listPath: TCore.IPathResponse[] = [];
163
162
  listBill: THznj.IHznjBillResponse[] = [];
164
163
  listFrom: THznj.IHznjNotiResponse[] = [];
package/src/hznj/index.ts CHANGED
@@ -61,7 +61,7 @@ export {
61
61
  THznjZbczResponse,
62
62
  THznjZbczBillResponse,
63
63
  THznjMainResponse,
64
- THznjBillResponse,
64
+ THznjBillResponse,
65
65
  type IHznjBaseResponse,
66
66
  type IHznjBasePathResponse,
67
67
  type IHznjBaseItemResponse,
@@ -113,6 +113,8 @@ export interface IHznkMainResponse {
113
113
  listWBDW: THznk.IHznkMainWbdwResponse[];
114
114
  /**任务指标 */
115
115
  listRWZB: THznk.IHznkMainRwzbResponse[];
116
+ /** 项目下关联的业务 */
117
+ listData: THznk.IHznkDataResponse[];
116
118
  }
117
119
 
118
120
  export class THznkMainResponse implements IHznkMainResponse {
@@ -199,6 +201,8 @@ export class THznkMainResponse implements IHznkMainResponse {
199
201
  listWBYH: TCore.IUserLiteResponse[] = [];
200
202
  listWBDW: THznk.IHznkMainWbdwResponse[] = [];
201
203
  listRWZB: THznk.IHznkMainRwzbResponse[] = [];
204
+ /** 项目下关联的业务 */
205
+ listData: THznk.IHznkDataResponse[] = [];
202
206
 
203
207
  constructor(data: Partial<IHznkMainResponse> = {}) {
204
208
  if (data) {
package/src/index.ts CHANGED
@@ -46,7 +46,7 @@ import * as TZfht from "./zfht";
46
46
  import * as TZfsq from "./zfsq";
47
47
  import * as TVary from "./vary";
48
48
  import * as TResp from "./response";
49
- import * as TAxios from "./axios"
49
+ import * as TAxios from "./axios";
50
50
 
51
51
  export {
52
52
  Const,
@@ -100,5 +100,5 @@ export {
100
100
  type IBaseConfig,
101
101
  type IBaseResponse,
102
102
  type IConfig,
103
- type IPathConfig,
103
+ type IPathConfig
104
104
  };
@@ -139,5 +139,5 @@ export class TVaryMainResponse implements IVaryMainResponse {
139
139
  listPath: TCore.IPathResponse[] = [];
140
140
  listSQBM: TCore.IDeptResponse[] = [];
141
141
  listSQYH: TCore.IUserResponse[] = [];
142
- listBill: TVary.IVaryMainResponse[] = [];
142
+ listBill: TVary.IVaryBillResponse[] = [];
143
143
  }