增加查询参数

This commit is contained in:
jiangzhe 2024-05-14 11:55:40 +08:00
parent 81cb29e4ba
commit f289e4ea5d
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ public class ScaleController extends BaseController {
* @return
*/
@GetMapping("/findAll")
public R<List<SysScaleVo>> findAll() {
return R.ok(sysScaleService.queryList(new SysScaleBo()));
public R<List<SysScaleVo>> findAll(SysScaleBo bo) {
return R.ok(sysScaleService.queryList(bo));
}
/**