|
|
@ -120,7 +120,7 @@ public class ${ClassName}Controller extends BaseController {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
#* @SaCheckPermission("${permissionPrefix}:list")*#
|
|
|
|
#* @SaCheckPermission("${permissionPrefix}:list")*#
|
|
|
|
@GetMapping("get${ClassName}List")
|
|
|
|
@GetMapping("get${ClassName}List")
|
|
|
|
public R<List<${ClassName}Vo>> get${ClassName}list(${ClassName}Bo bo) {
|
|
|
|
public R<List<${ClassName}Vo>> get${ClassName}List(${ClassName}Bo bo) {
|
|
|
|
List<${ClassName}Vo> list = ${className}Service.queryList(bo);
|
|
|
|
List<${ClassName}Vo> list = ${className}Service.queryList(bo);
|
|
|
|
return R.ok(list);
|
|
|
|
return R.ok(list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|