diff --git a/.gitignore b/.gitignore
index ed8368a..7feea44 100644
--- a/.gitignore
+++ b/.gitignore
@@ -45,3 +45,4 @@ nbdist/
!*/build/*.java
!*/build/*.html
!*/build/*.xml
+/zhyc-module/src/main/java/com/zhyc/module/group_management/service/impl/GroupServiceImpl.java
diff --git a/zhyc-module/pom.xml b/zhyc-module/pom.xml
index a3a00b5..78bc63d 100644
--- a/zhyc-module/pom.xml
+++ b/zhyc-module/pom.xml
@@ -23,6 +23,10 @@
1.18.38
provided
+
+ org.projectlombok
+ lombok
+
\ No newline at end of file
diff --git a/zhyc-module/src/main/java/com/zhyc/module/fileManagement/controller/BasSheepGroupMappingController.java b/zhyc-module/src/main/java/com/zhyc/module/fileManagement/controller/BasSheepGroupMappingController.java
index b1d3417..99aac40 100644
--- a/zhyc-module/src/main/java/com/zhyc/module/fileManagement/controller/BasSheepGroupMappingController.java
+++ b/zhyc-module/src/main/java/com/zhyc/module/fileManagement/controller/BasSheepGroupMappingController.java
@@ -1,17 +1,14 @@
package com.zhyc.module.fileManagement.controller;
+import java.util.Arrays;
import java.util.List;
+import java.util.Map;
import javax.servlet.http.HttpServletResponse;
+
+import com.zhyc.common.utils.StringUtils;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.PutMapping;
-import org.springframework.web.bind.annotation.DeleteMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult;
@@ -46,6 +43,24 @@ public class BasSheepGroupMappingController extends BaseController
return getDataTable(list);
}
+ @PreAuthorize("@ss.hasPermi('sheep_grouping:sheep_grouping:list')")
+ @GetMapping("/listJoin")
+ public TableDataInfo list(
+ @RequestParam(required = false) Long sheepId,
+ @RequestParam(required = false) Long groupId,
+ @RequestParam(required = false) String bsManageTags) {
+
+ List earList = null;
+ if (StringUtils.hasText(bsManageTags)) {
+ earList = Arrays.asList(bsManageTags.split("[,,\\s]+"));
+ }
+ startPage();
+ List