@ningboyz/types 1.0.106 → 1.0.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
|
@@ -72,6 +72,8 @@ export interface IUserPartResponse extends IBaseResponse<IUserPartResponse[]> {
|
|
|
72
72
|
|
|
73
73
|
fromUserMain: number;
|
|
74
74
|
fromUserName: string;
|
|
75
|
+
/** 所属部门 */
|
|
76
|
+
userDeptText: string;
|
|
75
77
|
displayText: string;
|
|
76
78
|
}
|
|
77
79
|
|
|
@@ -152,6 +154,7 @@ export class TUserPartResponse extends TBaseResponse<IUserPartResponse[]> implem
|
|
|
152
154
|
takeType: number = 0;
|
|
153
155
|
uniqueID: number = 0;
|
|
154
156
|
vitualID: number = 0;
|
|
157
|
+
userDeptText: string = "";
|
|
155
158
|
displayText: string = "";
|
|
156
159
|
|
|
157
160
|
public static toTree(listUser: IUserPartResponse[]) {
|