Hellohao图床6-12更新

This commit is contained in:
Hellohao
2019-06-12 17:37:33 +08:00
parent 12f29cd2a1
commit 4b9fa244cd
225 changed files with 31394 additions and 14039 deletions
@@ -0,0 +1,22 @@
package cn.hellohao.service.impl;
import cn.hellohao.dao.EmailConfigMapper;
import cn.hellohao.pojo.EmailConfig;
import cn.hellohao.service.EmailConfigService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class EmailServiceImpl implements EmailConfigService {
@Autowired
EmailConfigMapper emailConfigMapper;
@Override
public EmailConfig getemail() {
return emailConfigMapper.getemail();
}
@Override
public Integer updateemail(EmailConfig emailConfig) {
return emailConfigMapper.updateemail(emailConfig);
}
}