You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
3 years ago
|
package com.glxp.api.service.system;
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.system.SystemParamConfigEntity;
|
||
|
import com.glxp.api.req.system.SystemParamConfigRequest;
|
||
|
import com.glxp.api.req.system.SystemParamConfigSaveRequest;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
|
||
|
public interface SystemParamConfigService {
|
||
|
|
||
|
List<SystemParamConfigEntity> queryPage(SystemParamConfigRequest SystemParamConfigRequest);
|
||
|
|
||
|
SystemParamConfigEntity selectSystemParamConfig();
|
||
|
|
||
|
SystemParamConfigEntity findSystemParamConfig(SystemParamConfigRequest SystemParamConfigRequest);
|
||
|
|
||
|
SystemParamConfigEntity selectByParamName(SystemParamConfigRequest systemParamConfigRequest);
|
||
|
|
||
|
SystemParamConfigEntity selectByParamKey(SystemParamConfigRequest systemParamConfigRequest);
|
||
|
|
||
|
SystemParamConfigEntity selectByParamKey(String key);
|
||
|
|
||
|
String selectValueByParamKey(String key);
|
||
|
|
||
|
boolean updateById(SystemParamConfigSaveRequest systemParamConfigSaveRequest);
|
||
|
|
||
|
boolean updateParentId(SystemParamConfigSaveRequest systemParamConfigSaveRequest);
|
||
|
|
||
|
boolean insert(SystemParamConfigEntity systemParamConfigEntity);
|
||
|
|
||
|
Map<String, SystemParamConfigEntity> findBasicAll();
|
||
|
|
||
|
|
||
|
}
|