Commit b13f4fed authored by xiandafu's avatar xiandafu
Browse files

1.3.0

parent 002173af
......@@ -10,8 +10,6 @@ import org.springframework.transaction.annotation.Transactional;
import com.ibeetl.admin.core.dao.CoreRoleDao;
import com.ibeetl.admin.core.entity.CoreRole;
import com.ibeetl.admin.core.util.enums.DelFlagEnum;
import com.ibeetl.admin.core.util.enums.RoleTypeEnum;
/**
* 描述: 字典 service,包含常规字典和级联字典的操作。
......@@ -19,7 +17,7 @@ import com.ibeetl.admin.core.util.enums.RoleTypeEnum;
*/
@Service
@Transactional
public class CoreRoleService extends BaseService<CoreRole> {
public class CoreRoleService extends CoreBaseService<CoreRole> {
private static final Logger LOGGER = LoggerFactory.getLogger(CoreRoleService.class);
......
package ${package};
import java.util.List;
import org.beetl.sql.core.engine.PageQuery;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.ibeetl.admin.core.util.PlatformException;
import ${basePackage}.dao.${entity.name}Dao;
{basePackage}.dao.${entity.name}Dao;
import ${basePackage}.entity.${entity.name};
import com.ibeetl.admin.core.service.BaseService;
/**
* ${entity.displayName} Service
......
......@@ -13,19 +13,19 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.0.RELEASE</version>
<version>2.1.5.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>admin-core</artifactId>
<version>1.2.1</version>
<version>1.3.0</version>
</dependency>
<!-- admin-console 包含了系统管理管理的所有功能,子系统可以不使用这部分 -->
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>admin-console</artifactId>
<version>1.2.1</version>
<version>1.3.0</version>
</dependency>
<dependency>
......
......@@ -18,7 +18,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.0.RELEASE</version>
<version>2.1.5.RELEASE</version>
</parent>
<!-- Add typical dependencies for a web application -->
<dependencies>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment