| | |
| | | }) |
| | | } |
| | | |
| | | export const getLazyList = (data) => { |
| | | return request({ |
| | | url: '/api/ubcs-log/localLog/lazy-list', |
| | | method: 'post', |
| | | data: data, |
| | | }) |
| | | } |
| | | export const downLoadLog = (data) => { |
| | | return request({ |
| | | url: '/api/ubcs-log/localLog/downLoadLog', |
| | | method: 'post', |
| | | data:data, |
| | | }) |
| | | } |
| | | export const deleteLocalLog = (data) => { |
| | | return request({ |
| | | url: '/api/ubcs-log/localLog/deleteLogFile', |
| | | method: 'delete', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | |
| | | String idFieldName = attrVOS.stream().filter(s -> VciQueryWrapperForDO.ID_FIELD.equalsIgnoreCase(s.getId())).findFirst().orElseGet(() -> new CodeClassifyTemplateAttrVO()).getName(); |
| | | getFieldIndexMap(titleRowData, attrNameIdMap, fieldIndexMap); |
| | | //先不用管属性是否都存在,先转换一下数据 |
| | | List<ClientBusinessObject> cboList = new CopyOnWriteArrayList<>(); |
| | | List<ClientBusinessObject> cboList = new ArrayList<>(); |
| | | String fullPath = getFullPath(classifyFullInfo); |
| | | //我们需要获取到所有的下级分类的oid的路径,因为后面需要 |
| | | Map<String/**主键**/, String/**路径**/> childOidPathMap = getChildClassifyPathMap(classifyFullInfo, fullPath); |