修改首页可跳转统一用户,修改service集成AbstractService

This commit is contained in:
wenc000 2020-05-18 16:58:19 +08:00
parent e937cc763b
commit 189eac4fea
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@
</a>
</li>
<li class="layui-nav-item layui-hide-xs" lay-unselect>
<a href="javascript:void(0);" target="_blank" title="前台">
<a th:href="${oauthServer}" title="前台">
<i class="layui-icon layui-icon-website"></i>
</a>
</li>

View File

@ -1,5 +1,6 @@
package ${basePackage}.service.${lowerTableName}.impl;
import com.cm.common.base.AbstractService;
import com.cm.common.exception.RemoveException;
import com.cm.common.exception.SaveException;
import com.cm.common.exception.SearchException;
@ -12,7 +13,6 @@ import com.cm.common.utils.UUIDUtil;
import ${basePackage}.dao.${lowerTableName}.I${firstUpperTableName}Dao;
import ${basePackage}.pojo.dtos.${lowerTableName}.${firstUpperTableName}DTO;
import ${basePackage}.pojo.vos.${lowerTableName}.${firstUpperTableName}VO;
import ${basePackage}.service.BaseService;
import ${basePackage}.service.${lowerTableName}.I${firstUpperTableName}Service;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
@ -29,7 +29,7 @@ import java.util.*;
* @Version: ${version}
**/
@Service
public class ${firstUpperTableName}ServiceImpl extends BaseService implements I${firstUpperTableName}Service {
public class ${firstUpperTableName}ServiceImpl extends AbstractService implements I${firstUpperTableName}Service {
@Autowired
private I${firstUpperTableName}Dao ${firstLowerTableName}Dao;