| | |
| | | import ${packageName}.domain.vo.${ClassName}Vo; |
| | | import ${packageName}.domain.bo.${ClassName}Bo; |
| | | import ${packageName}.service.I${ClassName}Service; |
| | | #if($table.crud || $table.sub) |
| | | #if($table.crud) |
| | | import org.dromara.common.mybatis.core.page.TableDataInfo; |
| | | #elseif($table.tree) |
| | | #end |
| | |
| | | */ |
| | | @SaCheckPermission("${permissionPrefix}:list") |
| | | @GetMapping("/list") |
| | | #if($table.crud || $table.sub) |
| | | #if($table.crud) |
| | | public TableDataInfo<${ClassName}Vo> list(${ClassName}Bo bo, PageQuery pageQuery) { |
| | | return ${className}Service.queryPageList(bo, pageQuery); |
| | | } |