@ningboyz/types 1.5.106 → 1.5.107
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,5 +1,5 @@
|
|
|
1
|
-
import { TCore } from "../index.ts";
|
|
2
1
|
import _ from "lodash";
|
|
2
|
+
import { TCore } from "../index.ts";
|
|
3
3
|
|
|
4
4
|
export interface IFlowDataResponse {
|
|
5
5
|
whoBuild: number; //#硬件实例
|
|
@@ -26,6 +26,8 @@ export interface IFlowDataResponse {
|
|
|
26
26
|
createAt: number; //#创建时间
|
|
27
27
|
mastName: string; //#制单用户(名称)
|
|
28
28
|
mobileID: string; //审核用户手机号码
|
|
29
|
+
userIdcd: string; //审核用户身份证号
|
|
30
|
+
userZwlxText: string; //审核用户职务名称
|
|
29
31
|
createBy: string; //#制单用户(UUID)
|
|
30
32
|
|
|
31
33
|
coverURL: string;
|
|
@@ -114,6 +116,8 @@ export class TFlowDataResponse implements IFlowDataResponse {
|
|
|
114
116
|
mastName: string = "";
|
|
115
117
|
createBy: string = "";
|
|
116
118
|
mobileID: string = "";
|
|
119
|
+
userIdcd: string = "";
|
|
120
|
+
userZwlxText: string = "";
|
|
117
121
|
coverURL: string = "";
|
|
118
122
|
dataStat: number = 0;
|
|
119
123
|
didFirst: number = 0;
|