|
@@ -8,10 +8,9 @@ import com.dragonsoft.duceap.base.entity.http.ResponseStatus;
|
|
|
import com.dragonsoft.duceap.base.entity.search.SearchDTO;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.data.domain.Page;
|
|
|
-import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* @author mazq
|
|
@@ -64,4 +63,12 @@ public interface IAppColumnRelationFacaed {
|
|
|
*/
|
|
|
@PostMapping("relationUpdate")
|
|
|
ResponseStatus relationUpdate(@RequestBody AppColumnSaveVo saveVo);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询所有的关联关系id和code
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping("findAllIdAndCode")
|
|
|
+ List<AppColumnRelationVO> findAllIdAndCode();
|
|
|
}
|