@ningboyz/types 1.6.185 → 1.6.187
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
|
@@ -75,6 +75,7 @@ export interface IUserLiteResponse {
|
|
|
75
75
|
fromDataType: number;
|
|
76
76
|
fromDataUses: string;
|
|
77
77
|
fromHeavyVal: number;
|
|
78
|
+
heavyMul: number;
|
|
78
79
|
zbdwText: string;
|
|
79
80
|
/**数据分类文本 (作者|通讯作者) */
|
|
80
81
|
dataUses: string;
|
|
@@ -165,6 +166,7 @@ export class TUserLiteResponse implements IUserLiteResponse {
|
|
|
165
166
|
fromDataType: number = 0;
|
|
166
167
|
fromDataUses: string = "";
|
|
167
168
|
fromHeavyVal: number = 0;
|
|
169
|
+
heavyMul: number = 0;
|
|
168
170
|
zbdwText: string = "";
|
|
169
171
|
/**数据分类文本 (作者|通讯作者) */
|
|
170
172
|
dataUses: string = "";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
1
2
|
import { TStim } from "..";
|
|
2
3
|
import { IPathResponse } from "../core/IPathResponse";
|
|
3
4
|
import { IUserLiteResponse } from "../core/IUserLiteResponse";
|
|
4
5
|
import { TFlowDataResponse } from "../flow";
|
|
5
|
-
import _ from "lodash";
|
|
6
6
|
|
|
7
7
|
export interface IYzcqMainResponse {
|
|
8
8
|
whoBuild: number;
|
|
@@ -45,6 +45,7 @@ export interface IYzcqMainResponse {
|
|
|
45
45
|
yzcqUses: string;
|
|
46
46
|
yzcqMemo: string;
|
|
47
47
|
yzcqType: number;
|
|
48
|
+
yzcqTypeText: string;
|
|
48
49
|
matchVal: string;
|
|
49
50
|
billMain: number;
|
|
50
51
|
hashText: string;
|
|
@@ -103,6 +104,7 @@ export class TYzcqMainResponse implements IYzcqMainResponse {
|
|
|
103
104
|
yzcqUses: string = "";
|
|
104
105
|
yzcqMemo: string = "";
|
|
105
106
|
yzcqType: number = 0;
|
|
107
|
+
yzcqTypeText: string = "";
|
|
106
108
|
matchVal: string = "";
|
|
107
109
|
billMain: number = 0;
|
|
108
110
|
hashText: string = "";
|