@ningboyz/types 1.7.71 → 1.7.73
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
|
@@ -33,6 +33,9 @@ export interface IUserDutyResponse {
|
|
|
33
33
|
userName: string;
|
|
34
34
|
userIdcd: string;
|
|
35
35
|
unitMain: number;
|
|
36
|
+
|
|
37
|
+
// 虚拟字段
|
|
38
|
+
unitText: string;
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
export class TUserDutyResponse implements IUserDutyResponse {
|
|
@@ -70,4 +73,7 @@ export class TUserDutyResponse implements IUserDutyResponse {
|
|
|
70
73
|
userName: string = "";
|
|
71
74
|
userIdcd: string = "";
|
|
72
75
|
unitMain: number = 0;
|
|
76
|
+
|
|
77
|
+
// 虚拟字段
|
|
78
|
+
unitText: string = "";
|
|
73
79
|
}
|
|
@@ -47,6 +47,9 @@ export interface IUserEducResponse {
|
|
|
47
47
|
userName: string;
|
|
48
48
|
userIdcd: string;
|
|
49
49
|
unitMain: number;
|
|
50
|
+
|
|
51
|
+
// 虚拟字段
|
|
52
|
+
unitText: string;
|
|
50
53
|
}
|
|
51
54
|
|
|
52
55
|
export class TUserEducResponse implements IUserEducResponse {
|
|
@@ -98,4 +101,7 @@ export class TUserEducResponse implements IUserEducResponse {
|
|
|
98
101
|
userName: string = "";
|
|
99
102
|
userIdcd: string = "";
|
|
100
103
|
unitMain: number = 0;
|
|
104
|
+
|
|
105
|
+
// 虚拟字段
|
|
106
|
+
unitText: string = "";
|
|
101
107
|
}
|
|
@@ -37,6 +37,9 @@ export interface IUserMembResponse {
|
|
|
37
37
|
userName: string;
|
|
38
38
|
userIdcd: string;
|
|
39
39
|
unitMain: number;
|
|
40
|
+
|
|
41
|
+
// 虚拟字段
|
|
42
|
+
unitText: string;
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
export class TUserMembResponse implements IUserMembResponse {
|
|
@@ -78,4 +81,7 @@ export class TUserMembResponse implements IUserMembResponse {
|
|
|
78
81
|
userName: string = "";
|
|
79
82
|
userIdcd: string = "";
|
|
80
83
|
unitMain: number = 0;
|
|
84
|
+
|
|
85
|
+
// 虚拟字段
|
|
86
|
+
unitText: string = "";
|
|
81
87
|
}
|
|
@@ -47,6 +47,9 @@ export interface IUserPassResponse {
|
|
|
47
47
|
userName: string;
|
|
48
48
|
userIdcd: string;
|
|
49
49
|
unitMain: number;
|
|
50
|
+
|
|
51
|
+
// 虚拟字段
|
|
52
|
+
unitText: string;
|
|
50
53
|
}
|
|
51
54
|
|
|
52
55
|
export class TUserPassResponse implements IUserPassResponse {
|
|
@@ -98,4 +101,7 @@ export class TUserPassResponse implements IUserPassResponse {
|
|
|
98
101
|
userName: string = "";
|
|
99
102
|
userIdcd: string = "";
|
|
100
103
|
unitMain: number = 0;
|
|
104
|
+
|
|
105
|
+
// 虚拟字段
|
|
106
|
+
unitText: string = "";
|
|
101
107
|
}
|