|
@@ -12,6 +12,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
import org.springframework.web.context.request.WebRequest;
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
@@ -25,6 +26,7 @@ public class ClawController {
|
|
|
|
|
|
private ClawFeign clawFeign;
|
|
|
|
|
|
+
|
|
|
public ClawController(ClawFeign clawFeign) {
|
|
|
this.clawFeign = clawFeign;
|
|
|
}
|
|
@@ -48,4 +50,8 @@ public class ClawController {
|
|
|
map.put("projectCode_eq","a00001");
|
|
|
return clawFeign.findChuanyunProjectPageable(map);
|
|
|
}
|
|
|
+
|
|
|
+// public List<ChuanyunProjectDTO> test1(){
|
|
|
+//
|
|
|
+// }
|
|
|
}
|