|
|
@@ -28,7 +28,6 @@ public class ConfigController extends BaseController {
|
|
28
|
28
|
@GetMapping
|
|
29
|
29
|
public AjaxResult getList(Config input, PageInput pageInput) {
|
|
30
|
30
|
LambdaQueryWrapper<Config> qw = new LambdaQueryWrapper();
|
|
31
|
|
- qw.eq(input.getConfig_id() != null && input.getConfig_id() > 0, Config::getConfig_id, input.getConfig_id());
|
|
32
|
31
|
qw.like(!StringHelper.isEmpty(input.getConfigName()), Config::getConfigName, input.getConfigName());
|
|
33
|
32
|
qw.like(!StringHelper.isEmpty(input.getConfigKey()), Config::getConfigKey, input.getConfigKey());
|
|
34
|
33
|
qw.like(!StringHelper.isEmpty(input.getConfigValue()), Config::getConfigValue, input.getConfigValue());
|