@ningboyz/types 1.7.7 → 1.7.8
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
|
@@ -29,6 +29,9 @@ export interface IUserDutyResponse {
|
|
|
29
29
|
jlrqText: string;
|
|
30
30
|
/** 任免理由 */
|
|
31
31
|
rmlyText: string;
|
|
32
|
+
|
|
33
|
+
userName: string;
|
|
34
|
+
userIdcd: string;
|
|
32
35
|
}
|
|
33
36
|
|
|
34
37
|
export class TUserDutyResponse implements IUserDutyResponse {
|
|
@@ -62,4 +65,7 @@ export class TUserDutyResponse implements IUserDutyResponse {
|
|
|
62
65
|
jlrqText: string = "";
|
|
63
66
|
/** 任免理由 */
|
|
64
67
|
rmlyText: string = "";
|
|
68
|
+
|
|
69
|
+
userName: string = "";
|
|
70
|
+
userIdcd: string = "";
|
|
65
71
|
}
|
|
@@ -43,6 +43,9 @@ export interface IUserEducResponse {
|
|
|
43
43
|
educText: string;
|
|
44
44
|
/** 备注信息 */
|
|
45
45
|
educMemo: string;
|
|
46
|
+
|
|
47
|
+
userName: string;
|
|
48
|
+
userIdcd: string;
|
|
46
49
|
}
|
|
47
50
|
|
|
48
51
|
export class TUserEducResponse implements IUserEducResponse {
|
|
@@ -90,4 +93,7 @@ export class TUserEducResponse implements IUserEducResponse {
|
|
|
90
93
|
educText: string = "";
|
|
91
94
|
/** 备注信息 */
|
|
92
95
|
educMemo: string = "";
|
|
96
|
+
|
|
97
|
+
userName: string = "";
|
|
98
|
+
userIdcd: string = "";
|
|
93
99
|
}
|
|
@@ -33,6 +33,9 @@ export interface IUserMembResponse {
|
|
|
33
33
|
wContact: string;
|
|
34
34
|
/** 备注信息 */
|
|
35
35
|
membMemo: string;
|
|
36
|
+
|
|
37
|
+
userName: string;
|
|
38
|
+
userIdcd: string;
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
export class TUserMembResponse implements IUserMembResponse {
|
|
@@ -70,4 +73,7 @@ export class TUserMembResponse implements IUserMembResponse {
|
|
|
70
73
|
wContact: string = "";
|
|
71
74
|
/** 备注信息 */
|
|
72
75
|
membMemo: string = "";
|
|
76
|
+
|
|
77
|
+
userName: string = "";
|
|
78
|
+
userIdcd: string = "";
|
|
73
79
|
}
|
|
@@ -43,6 +43,9 @@ export interface IUserPassResponse {
|
|
|
43
43
|
jlxqText: string;
|
|
44
44
|
/** 备注信息 */
|
|
45
45
|
passMemo: string;
|
|
46
|
+
|
|
47
|
+
userName: string;
|
|
48
|
+
userIdcd: string;
|
|
46
49
|
}
|
|
47
50
|
|
|
48
51
|
export class TUserPassResponse implements IUserPassResponse {
|
|
@@ -90,4 +93,7 @@ export class TUserPassResponse implements IUserPassResponse {
|
|
|
90
93
|
jlxqText: string = "";
|
|
91
94
|
/** 备注信息 */
|
|
92
95
|
passMemo: string = "";
|
|
96
|
+
|
|
97
|
+
userName: string = "";
|
|
98
|
+
userIdcd: string = "";
|
|
93
99
|
}
|