增加查询参数
This commit is contained in:
parent
81cb29e4ba
commit
f289e4ea5d
|
@ -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));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue