| | |
| | | package com.vci.web.controller; |
| | | |
| | | import com.vci.corba.wf.data.ProcessCategoryInfo; |
| | | import com.vci.dto.OsEnumDTO; |
| | | import com.vci.starter.web.annotation.log.VciBusinessLog; |
| | | import com.vci.starter.web.pagemodel.BaseQueryObject; |
| | | import com.vci.starter.web.pagemodel.BaseResult; |
| | |
| | | */ |
| | | @GetMapping( "/getProcessCategoriesByPage") |
| | | @VciBusinessLog(operateName = "流程分类分页查询") |
| | | public BaseResult<DataGrid<ProcessCategoryInfo>> getProcessCategoriesByPage(BaseQueryObject baseQueryObject){ |
| | | public BaseResult getProcessCategoriesByPage(BaseQueryObject baseQueryObject){ |
| | | try { |
| | | return BaseResult.dataList(webFlowServiceI.getProcessCategoriesByPage(baseQueryObject)); |
| | | return BaseResult.dataGrid(webFlowServiceI.getProcessCategoriesByPage(baseQueryObject)); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | String exceptionMessage = "流程分类分页查询时出现错误,原因:" + VciBaseUtil.getExceptionMessage(e); |