Commit cc38a216 by wangli

新增

1 parent 6a51be14
...@@ -12,10 +12,13 @@ import java.util.List; ...@@ -12,10 +12,13 @@ import java.util.List;
public interface OrgGroupDao extends JpaRepository<OrgGroupEntity, Integer> { public interface OrgGroupDao extends JpaRepository<OrgGroupEntity, Integer> {
List<OrgGroupEntity> findAllByBranchId(String branchId); List<OrgGroupEntity> findAllByBranchId(String branchId);
List<OrgGroupEntity> findAllByBranchIdIn(List<String> branchId);
List<OrgGroupEntity> findAllByClusterId(String clusterId); List<OrgGroupEntity> findAllByClusterId(String clusterId);
List<OrgGroupEntity> findAllByClusterIdIn(List<String> clusterId);
List<OrgGroupEntity> findAllByGroupId(String groupId); List<OrgGroupEntity> findAllByGroupId(String groupId);
List<OrgGroupEntity> findAllByGroupIdIn(List<String> groupId);
OrgGroupEntity getByGroupId(String groupId); OrgGroupEntity getByGroupId(String groupId);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!