| | |
| | | package com.vci.web.controller; |
| | | |
| | | import com.vci.starter.web.annotation.controller.VciUnCheckRight; |
| | | import com.vci.starter.web.annotation.log.VciBusinessLog; |
| | | import com.vci.starter.web.pagemodel.*; |
| | | import com.vci.web.dto.*; |
| | |
| | | * @return 列表数据 |
| | | */ |
| | | @PostMapping("/dataGridQuery") |
| | | @VciUnCheckRight |
| | | @VciBusinessLog(operateName = "列表数据的查询",description = "${param.btmname}里的${param.tableDefineId}") |
| | | public DataGrid dataGrid(UIDataGridQuery dataGridQuery){ |
| | | return uiDataService.getDataForGrid(dataGridQuery); |
| | |
| | | * @return 树的数据 |
| | | */ |
| | | @PostMapping("/getDataForTree") |
| | | @VciUnCheckRight |
| | | @VciBusinessLog(operateName = "树的查询",description = "${param.btmname}") |
| | | public List<Tree> getDataForTree(UITreeQuery treeQuery){ |
| | | return uiDataService.getDataForTree(treeQuery); |