@ningboyz/types 1.2.53 → 1.2.54
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,9 +1,9 @@
|
|
|
1
|
-
import { IDeptResponse, IDictResponse, ILaidResponse, IPathResponse, IUnitResponse, IUserLiteResponse } from "../core";
|
|
2
1
|
import _ from "lodash";
|
|
3
|
-
import { TFlowDataResponse } from "../flow";
|
|
4
2
|
import { Const, TCore } from "../..";
|
|
5
|
-
import {
|
|
3
|
+
import { IDeptResponse, IDictResponse, ILaidResponse, IPathResponse, IUnitResponse, IUserLiteResponse } from "../core";
|
|
4
|
+
import { TFlowDataResponse } from "../flow";
|
|
6
5
|
import { ICardFromResponse } from "./ICardFromResponse";
|
|
6
|
+
import { ICardRoomResponse } from "./ICardRoomResponse";
|
|
7
7
|
|
|
8
8
|
export interface ICardMainResponse {
|
|
9
9
|
whoBuild: number;
|
|
@@ -22,6 +22,7 @@ export interface ICardMainResponse {
|
|
|
22
22
|
dataType: number;
|
|
23
23
|
kjndKJQJ: number;
|
|
24
24
|
dataGUID: string;
|
|
25
|
+
userMain: number;
|
|
25
26
|
mastName: string;
|
|
26
27
|
mastGUID: string;
|
|
27
28
|
createBy: string;
|
|
@@ -434,6 +435,7 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
434
435
|
dataType: number = 0;
|
|
435
436
|
kjndKJQJ: number = 0;
|
|
436
437
|
dataGUID: string = "";
|
|
438
|
+
userMain: number = 0;
|
|
437
439
|
mastName: string = "";
|
|
438
440
|
mastGUID: string = "";
|
|
439
441
|
createBy: string = "";
|
|
@@ -51,6 +51,8 @@ export interface IHzcbXmykResponse {
|
|
|
51
51
|
aplReady: number;
|
|
52
52
|
/** 指标数 */
|
|
53
53
|
getMoney: number;
|
|
54
|
+
/** 可申报金额 */
|
|
55
|
+
nowMoney: number;
|
|
54
56
|
xmykDate: number;
|
|
55
57
|
xmykStat: number;
|
|
56
58
|
xmykUses: string;
|
|
@@ -125,6 +127,8 @@ export class THzcbXmykResponse implements IHzcbXmykResponse {
|
|
|
125
127
|
aplReady: number = 0;
|
|
126
128
|
/** 指标数 */
|
|
127
129
|
getMoney: number = 0;
|
|
130
|
+
/** 可申报金额 */
|
|
131
|
+
nowMoney: number = 0;
|
|
128
132
|
xmykDate: number = 0;
|
|
129
133
|
xmykStat: number = 0;
|
|
130
134
|
xmykUses: string = "";
|