@ningboyz/types 1.6.185 → 1.6.186
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,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 = "";
|