@ningboyz/types 1.6.41 → 1.6.43
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
|
@@ -79,6 +79,10 @@ export interface ITablMainResponse {
|
|
|
79
79
|
tablMode: number;
|
|
80
80
|
// 计划名称
|
|
81
81
|
tablName: string;
|
|
82
|
+
// 用户标识
|
|
83
|
+
commitID: number;
|
|
84
|
+
// 用户名称
|
|
85
|
+
commitBy: string;
|
|
82
86
|
listData: Array<ITablDataResponse>;
|
|
83
87
|
listPath: TCore.IPathResponse[];
|
|
84
88
|
listWZK8: ITablWzk8Response[];
|
|
@@ -157,6 +161,8 @@ export class TTablMainResponse implements ITablMainResponse {
|
|
|
157
161
|
userMain: number = 0;
|
|
158
162
|
tablMode: number = 0;
|
|
159
163
|
tablName: string = "";
|
|
164
|
+
commitID: number = 0;
|
|
165
|
+
commitBy: string = "";
|
|
160
166
|
listData: Array<ITablDataResponse> = [];
|
|
161
167
|
listPath: TCore.IPathResponse[] = [];
|
|
162
168
|
listWZK8: ITablWzk8Response[] = [];
|