htui-yllkbz 1.3.97 → 1.3.99
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/lib/htui.common.js +249 -148
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.css +1 -1
- package/lib/htui.umd.js +249 -148
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +17 -17
- package/lib/htui.umd.min.js.gz +0 -0
- package/package.json +1 -1
- package/src/App.vue +26 -3
- package/src/packages/HtBaseData/index.vue +4 -1
- package/src/packages/HtSelectCategory/index.vue +119 -48
- package/src/packages/HtSelectUnit/index.vue +51 -25
- package/src/packages/HtShowBaseData/index.vue +18 -2
- package/src/plugins/commonApi.ts +22 -20
package/lib/htui.umd.min.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-11-15 14:41:40
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2023-02-
|
|
7
|
+
* @LastEditTime: 2023-02-15 11:30:16
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div id="app">
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<HtSelectPosition :readonly="true" v-model="state.value"></HtSelectPosition> -->
|
|
18
18
|
<!-- <HtSelectCategory :multiple="true" v-model="state.value"></HtSelectCategory>
|
|
19
19
|
<HtSelectCategory :readonly="true" v-model="state.value"></HtSelectCategory> -->
|
|
20
|
-
<HtSelectBaseData
|
|
20
|
+
<!-- <HtSelectBaseData
|
|
21
21
|
:onlyParent="true"
|
|
22
22
|
v-model="state.value"
|
|
23
23
|
dataTypeId="MeasureUnit"
|
|
@@ -26,7 +26,30 @@
|
|
|
26
26
|
:parentId="state.value"
|
|
27
27
|
v-model="state.timeValue"
|
|
28
28
|
dataTypeId="MeasureUnit"
|
|
29
|
-
></HtSelectBaseData>
|
|
29
|
+
></HtSelectBaseData> -->
|
|
30
|
+
<ht-select-category
|
|
31
|
+
:type="'device'"
|
|
32
|
+
:checkStrictly="true"
|
|
33
|
+
v-model="state.value"
|
|
34
|
+
></ht-select-category>
|
|
35
|
+
<ht-select-category
|
|
36
|
+
:type="'device'"
|
|
37
|
+
:readonly="true"
|
|
38
|
+
v-model="state.value"
|
|
39
|
+
></ht-select-category>
|
|
40
|
+
<!-- <ht-select-base-data
|
|
41
|
+
style="width: 100%"
|
|
42
|
+
:by-code="true"
|
|
43
|
+
v-model="state.value"
|
|
44
|
+
:readonly="true"
|
|
45
|
+
data-type-id="SeverityLevel"
|
|
46
|
+
></ht-select-base-data>
|
|
47
|
+
<ht-select-base-data
|
|
48
|
+
style="width: 100%"
|
|
49
|
+
:by-code="true"
|
|
50
|
+
v-model="state.value"
|
|
51
|
+
data-type-id="SeverityLevel"
|
|
52
|
+
></ht-select-base-data> -->
|
|
30
53
|
<router-view></router-view>
|
|
31
54
|
</div>
|
|
32
55
|
</template>
|
|
@@ -850,6 +850,7 @@ export default class CommonDatas extends Vue {
|
|
|
850
850
|
baseItems.filter(
|
|
851
851
|
(val) =>
|
|
852
852
|
val.category == item.code &&
|
|
853
|
+
val.isEnabled !== false &&
|
|
853
854
|
val.organizationUnits?.includes(this.org as string)
|
|
854
855
|
)
|
|
855
856
|
);
|
|
@@ -860,7 +861,9 @@ export default class CommonDatas extends Vue {
|
|
|
860
861
|
}
|
|
861
862
|
} else {
|
|
862
863
|
body[item.id || ''] = this.recursion(
|
|
863
|
-
baseItems.filter(
|
|
864
|
+
baseItems.filter(
|
|
865
|
+
(val) => val.category == item.code && val.isEnabled !== false
|
|
866
|
+
)
|
|
864
867
|
);
|
|
865
868
|
if (this.parentId) {
|
|
866
869
|
body[item.id || ''] = body[item.id || ''].filter(
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-12-30 14:29:14
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2023-02-
|
|
7
|
+
* @LastEditTime: 2023-02-15 11:25:04
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<span v-if="readonly">
|
|
11
|
-
{{ state.positionName
|
|
11
|
+
{{ state.positionName }}
|
|
12
12
|
</span>
|
|
13
13
|
<el-cascader
|
|
14
14
|
v-else
|
|
@@ -44,7 +44,7 @@ interface State {
|
|
|
44
44
|
/** 数据状态 */
|
|
45
45
|
loading: boolean;
|
|
46
46
|
value: any;
|
|
47
|
-
positionName: string
|
|
47
|
+
positionName: string;
|
|
48
48
|
/** 所有位置 */
|
|
49
49
|
dataSource: any[];
|
|
50
50
|
/** 所有分类 */
|
|
@@ -57,6 +57,7 @@ export default class HtSelectUser extends Vue {
|
|
|
57
57
|
@Prop() value!: string;
|
|
58
58
|
@Prop() org!: string;
|
|
59
59
|
@Prop() size!: string;
|
|
60
|
+
@Prop() type!: string;
|
|
60
61
|
/** 是否禁用 */
|
|
61
62
|
@Prop() disabled?: boolean;
|
|
62
63
|
@Prop() heightAuto?: boolean;
|
|
@@ -65,7 +66,7 @@ export default class HtSelectUser extends Vue {
|
|
|
65
66
|
@Prop() clearable?: boolean;
|
|
66
67
|
@Prop({ default: true }) show?: boolean;
|
|
67
68
|
@Prop({ default: false }) multiple?: boolean;
|
|
68
|
-
@Prop({ default: true }) showAllLevels
|
|
69
|
+
@Prop({ default: true }) showAllLevels!: boolean;
|
|
69
70
|
@Prop({ default: false }) checkStrictly?: boolean;
|
|
70
71
|
/* 是否只读 */
|
|
71
72
|
@Prop({ default: false }) readonly?: boolean;
|
|
@@ -80,7 +81,7 @@ export default class HtSelectUser extends Vue {
|
|
|
80
81
|
state: State = {
|
|
81
82
|
loading: false,
|
|
82
83
|
value: undefined,
|
|
83
|
-
positionName:
|
|
84
|
+
positionName: '',
|
|
84
85
|
dataSource: [],
|
|
85
86
|
unitCategory: [],
|
|
86
87
|
};
|
|
@@ -92,53 +93,123 @@ export default class HtSelectUser extends Vue {
|
|
|
92
93
|
}
|
|
93
94
|
}
|
|
94
95
|
/** 根据id获取单个 */
|
|
95
|
-
getSingle(val?: string | string[]) {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
96
|
+
// getSingle(val?: string | string[]) {
|
|
97
|
+
// this.state.positionName = '';
|
|
98
|
+
// if (val) {
|
|
99
|
+
// let arr: string[] = [];
|
|
100
|
+
// if (Array.isArray(val)) {
|
|
101
|
+
// arr = val;
|
|
102
|
+
// } else {
|
|
103
|
+
// arr = val.split(',');
|
|
104
|
+
// }
|
|
105
|
+
// const sessionDataStr = window.localStorage.getItem('assetCategory');
|
|
106
|
+
// let sessionData: any[] = [];
|
|
107
|
+
// if (sessionDataStr) {
|
|
108
|
+
// sessionData = JSON.parse(sessionDataStr);
|
|
109
|
+
// }
|
|
110
|
+
// arr.forEach((item) => {
|
|
111
|
+
// if (sessionData.length) {
|
|
112
|
+
// const data = sessionData.find((cat) => cat.id === item);
|
|
113
|
+
// this.state.positionName.push(
|
|
114
|
+
// `${data.displayName}${data.code ? `(${data.code})` : ''}`
|
|
115
|
+
// );
|
|
116
|
+
// } else {
|
|
117
|
+
// _axios
|
|
118
|
+
// .get(`/asset_manage/api/asset-management/asset-categories/${item}`)
|
|
119
|
+
// .then((res) => {
|
|
120
|
+
// const data = res.data;
|
|
121
|
+
// this.state.positionName.push(
|
|
122
|
+
// `${data.displayName}${data.code ? `(${data.code})` : ''}`
|
|
123
|
+
// );
|
|
124
|
+
// });
|
|
125
|
+
// }
|
|
126
|
+
// });
|
|
127
|
+
// } else {
|
|
128
|
+
// this.state.positionName = [];
|
|
129
|
+
// }
|
|
130
|
+
// }
|
|
131
|
+
|
|
132
|
+
/** 获取单位列表 */
|
|
133
|
+
getAllList(val?: string) {
|
|
134
|
+
if (this.type !== 'device') {
|
|
135
|
+
//资产分类
|
|
136
|
+
const sessStr = window.sessionStorage.getItem('assetCategory');
|
|
137
|
+
|
|
138
|
+
if (this.readonly && sessStr) {
|
|
139
|
+
this.getName(JSON.parse(sessStr), val);
|
|
140
|
+
return;
|
|
103
141
|
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
142
|
+
|
|
143
|
+
_axios
|
|
144
|
+
.get(`/asset_manage/api/asset-management/asset-categories/list`, {
|
|
145
|
+
params: { Recursive: true, CurrentId: this.parentId },
|
|
146
|
+
})
|
|
147
|
+
.then((res) => {
|
|
148
|
+
const data = res.data.items || [];
|
|
149
|
+
this.state.dataSource = data;
|
|
150
|
+
window.sessionStorage.setItem('assetCategory', JSON.stringify(data));
|
|
151
|
+
if (this.readonly) {
|
|
152
|
+
this.getName(data, val);
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
} else {
|
|
156
|
+
//设备分类
|
|
157
|
+
const sessStr = window.sessionStorage.getItem('deviceCategory');
|
|
158
|
+
|
|
159
|
+
if (this.readonly && sessStr) {
|
|
160
|
+
this.getName(JSON.parse(sessStr), val);
|
|
161
|
+
return;
|
|
108
162
|
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
163
|
+
_axios
|
|
164
|
+
.post(
|
|
165
|
+
`/device_models/api/device-model-management/device-category/get-list-all`,
|
|
166
|
+
{
|
|
167
|
+
isTree: true,
|
|
168
|
+
}
|
|
169
|
+
)
|
|
170
|
+
.then((res) => {
|
|
171
|
+
const data = res.data.items || [];
|
|
172
|
+
this.state.dataSource = data;
|
|
173
|
+
window.sessionStorage.setItem('deviceCategory', JSON.stringify(data));
|
|
174
|
+
if (this.readonly) {
|
|
175
|
+
this.getName(data, val);
|
|
176
|
+
}
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
/** 获取名字 */
|
|
181
|
+
getName(list: any, id?: string) {
|
|
182
|
+
let nameStr = '--';
|
|
183
|
+
function formatData(data: any[], title?: string, showAllLevels?: boolean) {
|
|
184
|
+
for (let i = 0; i < data.length; i++) {
|
|
185
|
+
if (data[i].id === id) {
|
|
186
|
+
if (showAllLevels) {
|
|
187
|
+
nameStr = title
|
|
188
|
+
? title + '/' + data[i].displayName
|
|
189
|
+
: data[i].displayName;
|
|
190
|
+
} else {
|
|
191
|
+
nameStr = data[i].displayName;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
break;
|
|
115
195
|
} else {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
196
|
+
if (data[i].children) {
|
|
197
|
+
if (showAllLevels) {
|
|
198
|
+
title = title
|
|
199
|
+
? title + '/' + data[i].displayName
|
|
200
|
+
: data[i].displayName;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
formatData(data[i].children, title, showAllLevels);
|
|
204
|
+
}
|
|
124
205
|
}
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
if (list.length) {
|
|
209
|
+
formatData(list, undefined, this.showAllLevels);
|
|
128
210
|
}
|
|
129
|
-
}
|
|
130
211
|
|
|
131
|
-
|
|
132
|
-
getAllList() {
|
|
133
|
-
_axios
|
|
134
|
-
.get(`/asset_manage/api/asset-management/asset-categories/list`, {
|
|
135
|
-
params: { Recursive: true, CurrentId: this.parentId },
|
|
136
|
-
})
|
|
137
|
-
.then((res) => {
|
|
138
|
-
const data = res.data.items || [];
|
|
139
|
-
this.state.dataSource = data;
|
|
140
|
-
// window.localStorage.setItem('assetCategory', JSON.stringify(data));
|
|
141
|
-
});
|
|
212
|
+
this.state.positionName = nameStr;
|
|
142
213
|
}
|
|
143
214
|
/** 方法 */
|
|
144
215
|
/**选择回调 */
|
|
@@ -165,7 +236,7 @@ export default class HtSelectUser extends Vue {
|
|
|
165
236
|
setValue(val: any) {
|
|
166
237
|
this.state.value = val;
|
|
167
238
|
if (this.readonly) {
|
|
168
|
-
this.
|
|
239
|
+
this.getAllList(val);
|
|
169
240
|
} else {
|
|
170
241
|
// this.getAllList(this.org);
|
|
171
242
|
}
|
|
@@ -174,7 +245,7 @@ export default class HtSelectUser extends Vue {
|
|
|
174
245
|
formatData(data: any[]) {
|
|
175
246
|
for (let i = 0; i < data.length; i++) {
|
|
176
247
|
const item = data[i];
|
|
177
|
-
item.name = `${item.displayName}
|
|
248
|
+
item.name = `${item.displayName}`;
|
|
178
249
|
if (item.children.length < 1) {
|
|
179
250
|
item.children = undefined;
|
|
180
251
|
} else {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-12-30 14:29:14
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2023-
|
|
7
|
+
* @LastEditTime: 2023-02-15 11:15:43
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<span v-if="readonly">
|
|
@@ -47,6 +47,7 @@ interface State {
|
|
|
47
47
|
allUnitList: any[];
|
|
48
48
|
/** 所有分类 */
|
|
49
49
|
unitCategory: any[];
|
|
50
|
+
UnitListForGroup: any[];
|
|
50
51
|
}
|
|
51
52
|
@Component({
|
|
52
53
|
name: 'HtSelectUnit',
|
|
@@ -72,6 +73,7 @@ export default class HtSelectUser extends Vue {
|
|
|
72
73
|
@Prop({ default: true }) appendToBody?: boolean;
|
|
73
74
|
/* 单位分类id */
|
|
74
75
|
@Prop() categoyId?: string;
|
|
76
|
+
@Prop() groupId?: string;
|
|
75
77
|
/** 是否只选择分类列表 */
|
|
76
78
|
@Prop({ default: false }) onlyCategoy?: string;
|
|
77
79
|
/** 数据 */
|
|
@@ -79,6 +81,7 @@ export default class HtSelectUser extends Vue {
|
|
|
79
81
|
loading: false,
|
|
80
82
|
value: undefined,
|
|
81
83
|
allUnitList: [],
|
|
84
|
+
UnitListForGroup: [],
|
|
82
85
|
unitCategory: [],
|
|
83
86
|
};
|
|
84
87
|
/** 生命周期 */
|
|
@@ -142,37 +145,60 @@ export default class HtSelectUser extends Vue {
|
|
|
142
145
|
setValue(val: any) {
|
|
143
146
|
this.state.value = val;
|
|
144
147
|
}
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
dataUnit.push({
|
|
152
|
-
value: item.id,
|
|
153
|
-
name: `${item.name}${item.code ? `(${item.code})` : ''}`,
|
|
154
|
-
code: item.code,
|
|
155
|
-
label: item.name,
|
|
156
|
-
});
|
|
157
|
-
}
|
|
148
|
+
@Watch('groupId', { immediate: true })
|
|
149
|
+
getUniInGroup(id: string) {
|
|
150
|
+
if (id) {
|
|
151
|
+
_axios.get(`/Unit/api/unit/unit-group/get?id=${id}`).then((res) => {
|
|
152
|
+
const data = res.data.unitConversions || [];
|
|
153
|
+
this.state.UnitListForGroup = data;
|
|
158
154
|
});
|
|
159
|
-
return dataUnit.length ? dataUnit : undefined;
|
|
160
155
|
}
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
}
|
|
165
|
-
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
get options() {
|
|
159
|
+
const { unitCategory, allUnitList, UnitListForGroup } = this.state;
|
|
160
|
+
if (this.groupId) {
|
|
161
|
+
const data: any[] = [];
|
|
162
|
+
UnitListForGroup.forEach((item) => {
|
|
166
163
|
data.push({
|
|
167
164
|
value: item.id,
|
|
168
|
-
name:
|
|
169
|
-
label: item.name,
|
|
165
|
+
name: item.name,
|
|
170
166
|
code: item.code,
|
|
171
|
-
|
|
167
|
+
label: item.name,
|
|
172
168
|
});
|
|
173
169
|
});
|
|
170
|
+
return data;
|
|
171
|
+
} else {
|
|
172
|
+
function getCurrentUnit(id: string) {
|
|
173
|
+
const dataUnit: any[] = [];
|
|
174
|
+
allUnitList.forEach((item) => {
|
|
175
|
+
if (item.unitCategoryId === id) {
|
|
176
|
+
dataUnit.push({
|
|
177
|
+
value: item.id,
|
|
178
|
+
name: `${item.name}`,
|
|
179
|
+
code: item.code,
|
|
180
|
+
label: item.name,
|
|
181
|
+
});
|
|
182
|
+
}
|
|
183
|
+
});
|
|
184
|
+
return dataUnit.length ? dataUnit : undefined;
|
|
185
|
+
}
|
|
186
|
+
let data: any[] = [];
|
|
187
|
+
if (this.categoyId) {
|
|
188
|
+
data = getCurrentUnit(this.categoyId) || [];
|
|
189
|
+
} else {
|
|
190
|
+
unitCategory.forEach((item) => {
|
|
191
|
+
data.push({
|
|
192
|
+
value: item.id,
|
|
193
|
+
name: `${item.name}}`,
|
|
194
|
+
label: item.name,
|
|
195
|
+
code: item.code,
|
|
196
|
+
children: this.onlyCategoy ? undefined : getCurrentUnit(item.id),
|
|
197
|
+
});
|
|
198
|
+
});
|
|
199
|
+
}
|
|
200
|
+
return data;
|
|
174
201
|
}
|
|
175
|
-
return data;
|
|
176
202
|
}
|
|
177
203
|
/** 计算属性 */
|
|
178
204
|
get getName() {
|
|
@@ -182,7 +208,7 @@ export default class HtSelectUser extends Vue {
|
|
|
182
208
|
];
|
|
183
209
|
|
|
184
210
|
const data: any = allData.find((item) => item.id === this.value);
|
|
185
|
-
return data ? `${data.name}
|
|
211
|
+
return data ? `${data.name}` : '';
|
|
186
212
|
}
|
|
187
213
|
}
|
|
188
214
|
</script>
|
|
@@ -37,7 +37,16 @@
|
|
|
37
37
|
</template>
|
|
38
38
|
<!-- 基础数据,以value查找 -->
|
|
39
39
|
<template v-if="baseDataValue">
|
|
40
|
-
<span
|
|
40
|
+
<span
|
|
41
|
+
class="item"
|
|
42
|
+
v-if="dataTypeId && baseDataItem[`${dataTypeId}_${baseDataValue}`]"
|
|
43
|
+
>
|
|
44
|
+
{{ baseDataItem[`${dataTypeId}_${baseDataValue}`].name || empty }}
|
|
45
|
+
<!-- <span v-if="baseDataInfo && !hideCode">
|
|
46
|
+
({{ baseDataItem[baseDataValue].value || empty }})
|
|
47
|
+
</span> -->
|
|
48
|
+
</span>
|
|
49
|
+
<span class="item" v-else-if="baseDataItem[baseDataValue]">
|
|
41
50
|
{{ baseDataItem[baseDataValue].name || empty }}
|
|
42
51
|
<span v-if="baseDataInfo && !hideCode">
|
|
43
52
|
({{ baseDataItem[baseDataValue].value || empty }})
|
|
@@ -193,10 +202,17 @@ export default class CommonDatas extends Vue {
|
|
|
193
202
|
/** 递归处理基础数据 */
|
|
194
203
|
getBaseDataItem(list: any[]) {
|
|
195
204
|
// const list = this.state.resData.baseData.items || []
|
|
205
|
+
if (this.dataTypeId === 'SeverityLevel') {
|
|
206
|
+
this.SeverityLevel.forEach((item) => {
|
|
207
|
+
this.state.baseDataItem[`${this.dataTypeId}_${item.value}`] = item;
|
|
208
|
+
});
|
|
209
|
+
}
|
|
210
|
+
|
|
196
211
|
list.forEach((item) => {
|
|
197
212
|
this.state.baseDataItem[item.id || ''] = item;
|
|
213
|
+
|
|
198
214
|
if (this.dataTypeId && this.dataTypeId === item.category) {
|
|
199
|
-
this.state.baseDataItem[item.value
|
|
215
|
+
this.state.baseDataItem[`${item.category}_${item.item.value}`] = item;
|
|
200
216
|
}
|
|
201
217
|
if (!this.dataTypeId) {
|
|
202
218
|
this.state.baseDataItem[item.value || ''] = item;
|
package/src/plugins/commonApi.ts
CHANGED
|
@@ -16824,8 +16824,8 @@ export class ApplicationLocalizationConfigurationDto
|
|
|
16824
16824
|
if (_data["languageFilesMap"].hasOwnProperty(key))
|
|
16825
16825
|
(<any>this.languageFilesMap)![key] = _data["languageFilesMap"][key]
|
|
16826
16826
|
? _data["languageFilesMap"][key].map((i: any) =>
|
|
16827
|
-
|
|
16828
|
-
|
|
16827
|
+
NameValue.fromJS(i)
|
|
16828
|
+
)
|
|
16829
16829
|
: [];
|
|
16830
16830
|
}
|
|
16831
16831
|
}
|
|
@@ -18783,7 +18783,7 @@ export interface IApprovalArocessBusinessDto {
|
|
|
18783
18783
|
|
|
18784
18784
|
export class ListResultDto_1OfOfApprovalArocessBusinessDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
18785
18785
|
implements
|
|
18786
|
-
|
|
18786
|
+
IListResultDto_1OfOfApprovalArocessBusinessDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
18787
18787
|
items?: ApprovalArocessBusinessDto[] | undefined;
|
|
18788
18788
|
|
|
18789
18789
|
constructor(
|
|
@@ -18885,7 +18885,7 @@ export interface IApprovalArocessBusinessCreateDto {
|
|
|
18885
18885
|
|
|
18886
18886
|
export class PagedResultDto_1OfOfApprovalArocessBusinessDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
18887
18887
|
implements
|
|
18888
|
-
|
|
18888
|
+
IPagedResultDto_1OfOfApprovalArocessBusinessDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
18889
18889
|
items?: ApprovalArocessBusinessDto[] | undefined;
|
|
18890
18890
|
totalCount?: number;
|
|
18891
18891
|
|
|
@@ -19001,6 +19001,8 @@ export class BaseDataDto implements IBaseDataDto {
|
|
|
19001
19001
|
/** 基础数据分类 */
|
|
19002
19002
|
category?: string | undefined;
|
|
19003
19003
|
isDefault?: boolean;
|
|
19004
|
+
isEnabled?: boolean;
|
|
19005
|
+
|
|
19004
19006
|
sort?: number;
|
|
19005
19007
|
children?: BaseDataDto[] | undefined;
|
|
19006
19008
|
/** 描述 */
|
|
@@ -19303,7 +19305,7 @@ export interface IUpdateBaseDataDto {
|
|
|
19303
19305
|
|
|
19304
19306
|
export class ListResultDto_1OfOfBaseDataDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
19305
19307
|
implements
|
|
19306
|
-
|
|
19308
|
+
IListResultDto_1OfOfBaseDataDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
19307
19309
|
items?: BaseDataDto[] | undefined;
|
|
19308
19310
|
|
|
19309
19311
|
constructor(
|
|
@@ -19414,7 +19416,7 @@ export interface IGetBaseDataInput {
|
|
|
19414
19416
|
|
|
19415
19417
|
export class PagedResultDto_1OfOfBaseDataDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
19416
19418
|
implements
|
|
19417
|
-
|
|
19419
|
+
IPagedResultDto_1OfOfBaseDataDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
19418
19420
|
items?: BaseDataDto[] | undefined;
|
|
19419
19421
|
totalCount?: number;
|
|
19420
19422
|
|
|
@@ -19633,7 +19635,7 @@ export interface IUpdateDictionaryCategoryDto {
|
|
|
19633
19635
|
|
|
19634
19636
|
export class ListResultDto_1OfOfDictionaryCategoryDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
19635
19637
|
implements
|
|
19636
|
-
|
|
19638
|
+
IListResultDto_1OfOfDictionaryCategoryDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
19637
19639
|
items?: DictionaryCategoryDto[] | undefined;
|
|
19638
19640
|
|
|
19639
19641
|
constructor(
|
|
@@ -19722,7 +19724,7 @@ export interface IGetDictionaryCategoryInput {
|
|
|
19722
19724
|
|
|
19723
19725
|
export class PagedResultDto_1OfOfDictionaryCategoryDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
19724
19726
|
implements
|
|
19725
|
-
|
|
19727
|
+
IPagedResultDto_1OfOfDictionaryCategoryDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
19726
19728
|
items?: DictionaryCategoryDto[] | undefined;
|
|
19727
19729
|
totalCount?: number;
|
|
19728
19730
|
|
|
@@ -20055,7 +20057,7 @@ export interface IGetDictionaryDataInput {
|
|
|
20055
20057
|
|
|
20056
20058
|
export class PagedResultDto_1OfOfDictionaryDataDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
20057
20059
|
implements
|
|
20058
|
-
|
|
20060
|
+
IPagedResultDto_1OfOfDictionaryDataDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
20059
20061
|
items?: DictionaryDataDto[] | undefined;
|
|
20060
20062
|
totalCount?: number;
|
|
20061
20063
|
|
|
@@ -20605,7 +20607,7 @@ export interface IJWorkflowSettingCreateDto {
|
|
|
20605
20607
|
|
|
20606
20608
|
export class PagedResultDto_1OfOfJWorkflowSettingDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
20607
20609
|
implements
|
|
20608
|
-
|
|
20610
|
+
IPagedResultDto_1OfOfJWorkflowSettingDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
20609
20611
|
items?: JWorkflowSettingDto[] | undefined;
|
|
20610
20612
|
totalCount?: number;
|
|
20611
20613
|
|
|
@@ -21692,7 +21694,7 @@ export interface IPositionDetailDto {
|
|
|
21692
21694
|
|
|
21693
21695
|
export class PagedResultDto_1OfOfPositionDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
21694
21696
|
implements
|
|
21695
|
-
|
|
21697
|
+
IPagedResultDto_1OfOfPositionDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
21696
21698
|
items?: PositionDto[] | undefined;
|
|
21697
21699
|
totalCount?: number;
|
|
21698
21700
|
|
|
@@ -22004,7 +22006,7 @@ export interface IIdentityRoleDto {
|
|
|
22004
22006
|
|
|
22005
22007
|
export class ListResultDto_1OfOfIdentityRoleDtoAndContractsAnd_0AndCulture_neutralAndPublicKeyToken_null
|
|
22006
22008
|
implements
|
|
22007
|
-
|
|
22009
|
+
IListResultDto_1OfOfIdentityRoleDtoAndContractsAnd_0AndCulture_neutralAndPublicKeyToken_null {
|
|
22008
22010
|
items?: IdentityRoleDto[] | undefined;
|
|
22009
22011
|
|
|
22010
22012
|
constructor(
|
|
@@ -22053,7 +22055,7 @@ export interface IListResultDto_1OfOfIdentityRoleDtoAndContractsAnd_0AndCulture_
|
|
|
22053
22055
|
|
|
22054
22056
|
export class PagedResultDto_1OfOfIdentityRoleDtoAndContractsAnd_0AndCulture_neutralAndPublicKeyToken_null
|
|
22055
22057
|
implements
|
|
22056
|
-
|
|
22058
|
+
IPagedResultDto_1OfOfIdentityRoleDtoAndContractsAnd_0AndCulture_neutralAndPublicKeyToken_null {
|
|
22057
22059
|
items?: IdentityRoleDto[] | undefined;
|
|
22058
22060
|
totalCount?: number;
|
|
22059
22061
|
|
|
@@ -22409,7 +22411,7 @@ export interface IUpdateSeverityLevelInput {
|
|
|
22409
22411
|
|
|
22410
22412
|
export class PagedResultDto_1OfOfSeverityLevelDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
22411
22413
|
implements
|
|
22412
|
-
|
|
22414
|
+
IPagedResultDto_1OfOfSeverityLevelDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
22413
22415
|
items?: SeverityLevelDto[] | undefined;
|
|
22414
22416
|
totalCount?: number;
|
|
22415
22417
|
|
|
@@ -22572,7 +22574,7 @@ export interface ITenantUpdateDto {
|
|
|
22572
22574
|
|
|
22573
22575
|
export class PagedResultDto_1OfOfTenantDtoAndContractsAnd_0AndCulture_neutralAndPublicKeyToken_null
|
|
22574
22576
|
implements
|
|
22575
|
-
|
|
22577
|
+
IPagedResultDto_1OfOfTenantDtoAndContractsAnd_0AndCulture_neutralAndPublicKeyToken_null {
|
|
22576
22578
|
items?: TenantDto[] | undefined;
|
|
22577
22579
|
totalCount?: number;
|
|
22578
22580
|
|
|
@@ -23430,7 +23432,7 @@ export interface ICronExpression {
|
|
|
23430
23432
|
|
|
23431
23433
|
export class ListResultDto_1OfOfCronExpressionAndCoreAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
23432
23434
|
implements
|
|
23433
|
-
|
|
23435
|
+
IListResultDto_1OfOfCronExpressionAndCoreAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
23434
23436
|
items?: CronExpression[] | undefined;
|
|
23435
23437
|
|
|
23436
23438
|
constructor(
|
|
@@ -23479,7 +23481,7 @@ export interface IListResultDto_1OfOfCronExpressionAndCoreAnd_10AndCulture_neutr
|
|
|
23479
23481
|
|
|
23480
23482
|
export class PagedResultDto_1OfOfTimeStrategyDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
23481
23483
|
implements
|
|
23482
|
-
|
|
23484
|
+
IPagedResultDto_1OfOfTimeStrategyDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
23483
23485
|
items?: TimeStrategyDto[] | undefined;
|
|
23484
23486
|
totalCount?: number;
|
|
23485
23487
|
|
|
@@ -23581,7 +23583,7 @@ export interface ICreateTimeStrategyCategoryDto {
|
|
|
23581
23583
|
|
|
23582
23584
|
export class PagedResultDto_1OfOfTimeStrategyCategoryDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null
|
|
23583
23585
|
implements
|
|
23584
|
-
|
|
23586
|
+
IPagedResultDto_1OfOfTimeStrategyCategoryDtoAndContractsAnd_10AndCulture_neutralAndPublicKeyToken_null {
|
|
23585
23587
|
items?: TimeStrategyCategoryDto[] | undefined;
|
|
23586
23588
|
totalCount?: number;
|
|
23587
23589
|
|
|
@@ -23774,7 +23776,7 @@ export interface IIdentityUserUpdateDto {
|
|
|
23774
23776
|
|
|
23775
23777
|
export class PagedResultDto_1OfOfIdentityUserDtoAndContractsAnd_0AndCulture_neutralAndPublicKeyToken_null
|
|
23776
23778
|
implements
|
|
23777
|
-
|
|
23779
|
+
IPagedResultDto_1OfOfIdentityUserDtoAndContractsAnd_0AndCulture_neutralAndPublicKeyToken_null {
|
|
23778
23780
|
items?: IdentityUserDto[] | undefined;
|
|
23779
23781
|
totalCount?: number;
|
|
23780
23782
|
|
|
@@ -24027,7 +24029,7 @@ export interface IUserData {
|
|
|
24027
24029
|
|
|
24028
24030
|
export class ListResultDto_1OfOfUserDataAndAbstractionsAnd_0AndCulture_neutralAndPublicKeyToken_null
|
|
24029
24031
|
implements
|
|
24030
|
-
|
|
24032
|
+
IListResultDto_1OfOfUserDataAndAbstractionsAnd_0AndCulture_neutralAndPublicKeyToken_null {
|
|
24031
24033
|
items?: UserData[] | undefined;
|
|
24032
24034
|
|
|
24033
24035
|
constructor(
|