优化注释

This commit is contained in:
mazhicheng 2019-12-06 16:40:11 +08:00
parent 41e8290104
commit 4b11fa5ba1
6 changed files with 13 additions and 13 deletions

View File

@ -27,7 +27,7 @@ diboot 2.0版本,实现: diboot-core全新内核 + diboot-devtools代码生成
## 二、 diboot-devtools 代码生成工具 [(我要试试)](https://www.diboot.com/guide/diboot-devtools/%E4%BB%8B%E7%BB%8D.html)
## 二、 diboot-devtools 自动化开发助理 [(我要试试)](https://www.diboot.com/guide/diboot-devtools/%E4%BB%8B%E7%BB%8D.html)
##### 1. 支持多数据库MySQL、MariaDB、ORACLE、SQLServer、PostgreSQL
##### 2. 使用很简单引入依赖jar配置参数后即可随SpringBoot启动运行

View File

@ -62,7 +62,7 @@ public abstract class BaseEntity implements Serializable {
}
/***
* model对象转为map
* Entity对象转为map
* @return
*/
public Map<String, Object> toMap(){
@ -71,7 +71,7 @@ public abstract class BaseEntity implements Serializable {
}
/**
* model对象转为String
* Entity对象转为String
* @return
*/
@Override

View File

@ -5,7 +5,7 @@ import java.util.Arrays;
import java.util.List;
/**
* Model的List包装类用于接收List并绑定校验的情况
* Entity的List包装类用于接收List并绑定校验的情况
* @author Mazhicheng
* @version 2.0
* @date 2018/11/8
@ -23,7 +23,7 @@ public class EntityList<T extends BaseEntity> {
this.entityList = entityList;
}
public List<T> getModelList(){
public List<T> getEntityList(){
return entityList;
}

View File

@ -60,7 +60,7 @@ public class BaseServiceImpl<M extends BaseCrudMapper<T>, T> extends ServiceImpl
@Override
public boolean createEntity(T entity) {
if(entity == null){
warning("createModel", "参数entity为null");
warning("createEntity", "参数entity为null");
return false;
}
return super.save(entity);

View File

@ -58,7 +58,7 @@ public enum Status {
FAIL_EXCEPTION(5000, "系统异常"),
/***
* 系统异常
* 缓存清空
*/
MEMORY_EMPTY_LOST(9999, "缓存清空");

View File

@ -91,17 +91,17 @@ Map map = BeanUtils.convertToStringKeyObjectListMap(allLists, fields);
* buildTree 方法
```java
//该方法用来构建上下级关联的实体关系树形结构顶层父级实体的parentId必须是为null或0入参为对象集合allModels
//该方法用来构建支持无限层级的树形结构默认顶层父级节点的parentId=0入参为对象集合allNodes
//方法定义
public static <T extends BaseEntity> List<T> buildTree(List<T> allModels){...}
public static <T> List<T> buildTree(List<T> allNodes){...}
//方法调用示例
List list = BeanUtils.buildTree(allModels);
List<Menu> menuTree = BeanUtils.buildTree(allNodes);
//该方法用来构建上下级关联的实体关系树形结构去除顶层父级实体的parentId必须是为null或0的限制入参为对象集合allModels
//该方法用来构建支持无限层级的树形结构指定顶层父级节点的parentId入参为allNodes, rootNodeId
//方法定义
public static <T extends BaseEntity> List<T> buildTree(List<T> parentModels, List<T> allModels){...}
public static <T> List<T> buildTree(List<T> allNodes, Object rootNodeId){
//方法调用示例
List list = BeanUtils.buildTree(parentModels, allModels);
List<Menu> menuTree = BeanUtils.buildTree(allNodes, 1L);
```
* extractDiff 方法