标签:nta div ctc task nat feedback 主表 dep OLE
1.主从表
主表A与从表B关联:
若存在1:N关系,查询条件为B表字段:
list.add(criteriaBuilder.like(root.joinList("projectContacts").get("pcontacts").as(String.class), "%" + search.getPcontacts() + "%"));
如果是1:1关系,写法如下:
roleConditions.add(cb.equal(root.join("projectThin", JoinType.INNER).get("industryType").as(String.class), roleindustry.getIndustryCode()));
如果表A与B关系为a.***=B.** and a.***=B.***,则写法为:
ListJoin<UvPcmerchants, List<UtMerFeedback>> taskJoin = root.joinList("merFeedbackList", JoinType.LEFT); list.add(cb.and(cb.equal(taskJoin.get("depid"), par.getUserDept()),cb.notEqual(taskJoin.get("status"),"N")));
标签:nta div ctc task nat feedback 主表 dep OLE
原文地址:https://www.cnblogs.com/jizhong/p/9908936.html