|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package cn.estsh.i3plus.core.apiservice.serviceimpl.busi;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.core.api.iservice.busi.ISysConfigService;
|
|
|
|
|
import cn.estsh.i3plus.platform.common.util.CommonConstWords;
|
|
|
|
|
import cn.estsh.i3plus.platform.common.util.PlatformConstWords;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.DdlPackBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.ListPager;
|
|
|
|
@ -89,6 +90,18 @@ public class SysConfigService implements ISysConfigService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<SysConfig> getSysConfigPwdByCode() {
|
|
|
|
|
List<SysConfig> pwdConfig = new ArrayList();
|
|
|
|
|
pwdConfig.add(SysConfigRDao.getByProperty("configCode", CommonConstWords.CONFIG_PWD_EXIST_SPECIAL_CHAR));
|
|
|
|
|
pwdConfig.add(SysConfigRDao.getByProperty("configCode", CommonConstWords.CONFIG_PWD_EXIST_UPPERCASE_ENGLISH));
|
|
|
|
|
pwdConfig.add(SysConfigRDao.getByProperty("configCode", CommonConstWords.CONFIG_PWD_EXIST_LOWER_ENGLISH));
|
|
|
|
|
pwdConfig.add(SysConfigRDao.getByProperty("configCode", CommonConstWords.CONFIG_PWD_EXIST_NUMBER));
|
|
|
|
|
pwdConfig.add(SysConfigRDao.getByProperty("configCode", CommonConstWords.CONFIG_PWD_LENGTH));
|
|
|
|
|
pwdConfig.add(SysConfigRDao.getByProperty("configCode", CommonConstWords.CONFIG_PWD_REPEAT_DAY));
|
|
|
|
|
return pwdConfig;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@ApiOperation(value = "查询系统邮件配置项")
|
|
|
|
|
public List findMailConfig() {
|
|
|
|
|
List mailConfig = new ArrayList();
|
|
|
|
|