@ningboyz/types 1.2.199 → 1.3.1
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 +1 -1
- package/src/const/const_hznk.ts +2 -2
- package/src/const/const_vary.ts +1 -1
- package/src/custom/index.ts +0 -1
- package/src/hzcb/IHzcbXmssResponse.ts +1 -1
- package/src/hzcb/index.ts +2 -2
- package/src/hznj/IHznjMainResponse.ts +1 -2
- package/src/hznj/index.ts +1 -1
- package/src/hznk/IHznkMainResponse.ts +4 -0
- package/src/index.ts +2 -2
- package/src/vary/IVaryMainResponse.ts +1 -1
package/package.json
CHANGED
package/src/const/const_hznk.ts
CHANGED
|
@@ -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;
|
package/src/const/const_vary.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const CONST_SYS_CLASC_TO_VARY_某农科院 = 1049
|
|
1
|
+
export const CONST_SYS_CLASC_TO_VARY_某农科院 = 1049;
|
package/src/custom/index.ts
CHANGED
package/src/hzcb/index.ts
CHANGED
|
@@ -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
|
@@ -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.
|
|
142
|
+
listBill: TVary.IVaryBillResponse[] = [];
|
|
143
143
|
}
|