@ningboyz/types 1.6.166 → 1.6.167
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
|
@@ -70,8 +70,11 @@ export interface ISysMenuWithCoreResponse {
|
|
|
70
70
|
billItem: string;
|
|
71
71
|
/** 参与事前报备 */
|
|
72
72
|
todoLock: number;
|
|
73
|
-
|
|
73
|
+
listCnfgText: string;
|
|
74
|
+
k0kmKmmc: string;
|
|
74
75
|
menuParaConv: ISysMenuWithCoreResponseMenuPara;
|
|
76
|
+
|
|
77
|
+
pathType: IDictResponse[];
|
|
75
78
|
wldyPage: IWldyPageResponse[];
|
|
76
79
|
listGAMS: IGamsCnfgResponse[];
|
|
77
80
|
}
|
|
@@ -102,7 +105,6 @@ export class TSysMenuWithCoreResponse implements ISysMenuWithCoreResponse {
|
|
|
102
105
|
createAt: number = 0;
|
|
103
106
|
updateBy: string = "";
|
|
104
107
|
updateAt: number = 0;
|
|
105
|
-
|
|
106
108
|
deleteBy: string = "";
|
|
107
109
|
deleteAt: number = 0;
|
|
108
110
|
queuesBy: number = 0;
|
|
@@ -135,8 +137,11 @@ export class TSysMenuWithCoreResponse implements ISysMenuWithCoreResponse {
|
|
|
135
137
|
billTabl: string = "";
|
|
136
138
|
billItem: string = "";
|
|
137
139
|
todoLock: number = 0;
|
|
138
|
-
|
|
140
|
+
listCnfgText: string = "";
|
|
141
|
+
k0kmKmmc: string = "";
|
|
139
142
|
menuParaConv: ISysMenuWithCoreResponseMenuPara = new TSysMenuWithCoreResponseMenuPara(); // menuPara转换成对象
|
|
143
|
+
|
|
144
|
+
pathType: IDictResponse[] = [];
|
|
140
145
|
wldyPage: IWldyPageResponse[] = [];
|
|
141
146
|
listGAMS: IGamsCnfgResponse[] = [];
|
|
142
147
|
|