Java实体类数据封的代码实例

发布时间:2021-09-14 15:36:39 作者:chen
来源:亿速云 阅读:108

这篇文章主要讲解了“Java实体类数据封的代码实例”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java实体类数据封的代码实例”吧!

1、实体类

@datapublic class PublishServiceType implements Comparable<PublishServiceType>{  /**   *   */  private static final long serialVersionUID = -3572108154932898825L;  /*   * @see [code]   * @comment 类型标识   */  private String code;  /*   * @see {createtime}   * @comment 创建时间   */  private java.util.Date createtime;  /*   * @see {defaultmanual}   * @comment 服务类型默认使用手册   */  private String defaultmanual;  /*   * @see {description}   * @comment 服务类型描述   */  private String description;  /*   * @see {id}   * @comment 主键   */  private String id;  /*   * @see {isdelete}   * @comment 是否可以删除   */  private Integer isdelete;  /*   * @see {lastmodifytime}   * @comment 最近修改时间   */  private java.util.Date lastmodifytime;  /*   * @see {name}   * @comment 服务类型名称   */  private String name;  /*   * @see {parentid}   * @comment 服务类型父节点   */  private String parentid;  /**   * 排序   */  private Integer sort;  private List<PublishServiceType>children;}

2、数据封装

@Override  public List<PublishServiceType> findList(String name) {    List<PublishServiceType>list = publishServiceTypeMapper.findByName(name);    if (JudgeUtil.isEmpty(list)){      return null;    }    //父子级组装    return parentAndChildren(list);  } private List<PublishServiceType>parentAndChildren(List<PublishServiceType> list){    //最顶层根节点    List<PublishServiceType>rootList = new ArrayList<>();    //非最顶层根节点    List<PublishServiceType>bodyList = new ArrayList<>();    for (PublishServiceType publishServiceType : list) {      if (StringUtils.isBlank(publishServiceType.getParentid())){        rootList.add(publishServiceType);      }else{        bodyList.add(publishServiceType);      }    }    return getTree(rootList,bodyList);  }  public List<PublishServiceType> getTree(List<PublishServiceType>rootList, List<PublishServiceType>bodyList){    if (!JudgeUtil.isEmpty(bodyList)){      //声明一个map,用来过滤已操作过的数据      Map<String,String> map = new HashMap<>(bodyList.size());      rootList.forEach(parent->getChild(parent,bodyList,map));      return rootList;    }else{      return rootList;    }  }  private void getChild(PublishServiceType parent,List<PublishServiceType>bodyList, Map<String,String> map){    List<PublishServiceType>childList = new ArrayList<>();    bodyList.stream().filter(c->!map.containsKey(c.getId()))             .filter(c->c.getParentid().equals(parent.getId()))             .forEach(c->{               map.put(c.getId(),c.getParentid());               getChild(c,bodyList,map);               childList.add(c);             });    parent.setChildren(childList);  }

3、结果

{ "code": 20000, "message": "成功", "data": [  {   "code": null,   "createtime": null,   "defaultmanual": null,   "description": null,   "id": "dc1d70b9eb7b4df3bbe8dcc6a93cbd57",   "isdelete": -1,   "lastmodifytime": null,   "name": "基础服务",   "parentid": "",   "sort": 1,   "children": [    {     "code": null,     "createtime": null,     "defaultmanual": null,     "description": null,     "id": "b1779671ef1b45e0a9a8a1edbff03f1e",     "isdelete": -1,     "lastmodifytime": null,     "name": "数据源服务",     "parentid": "dc1d70b9eb7b4df3bbe8dcc6a93cbd57",     "sort": 2,     "children": [      {       "code": null,       "createtime": null,       "defaultmanual": null,       "description": null,       "id": "2a38a8254ec348e9b54c9bf4622f23db",       "isdelete": 1,       "lastmodifytime": null,       "name": "测试添加数据库服务2",       "parentid": "b1779671ef1b45e0a9a8a1edbff03f1e",       "sort": null,       "children": []      }     ]    },    {     "code": null,     "createtime": null,     "defaultmanual": null,     "description": null,     "id": "d4f3b047dc2d467a9b404ded8acf4673",     "isdelete": 1,     "lastmodifytime": null,     "name": "text_lsa",     "parentid": "dc1d70b9eb7b4df3bbe8dcc6a93cbd57",     "sort": null,     "children": []    }   ]  },  {   "code": null,   "createtime": null,   "defaultmanual": null,   "description": null,   "id": "af1b4a4d2f074fa19e1dae0a5540a5bf",   "isdelete": 1,   "lastmodifytime": null,   "name": "测试添加1",   "parentid": "",   "sort": null,   "children": []  },  {   "code": null,   "createtime": null,   "defaultmanual": null,   "description": null,   "id": "62e15d859a224126884888a55df355a7",   "isdelete": 1,   "lastmodifytime": null,   "name": "测试添加2",   "parentid": "",   "sort": null,   "children": []  } ]}

感谢各位的阅读,以上就是“Java实体类数据封的代码实例”的内容了,经过本文的学习后,相信大家对Java实体类数据封的代码实例这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!

推荐阅读:
  1. .net core怎么根据数据库生成实体类
  2. JAVA如何转换树结构数据代码实例

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

java

上一篇:nodejs如何更改路径

下一篇:MongoDB日志切割的方式有哪些

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》