|
@@ -5,10 +5,7 @@ import lombok.AllArgsConstructor;
|
|
import org.springblade.common.constant.ApiConstant;
|
|
import org.springblade.common.constant.ApiConstant;
|
|
import org.springblade.core.boot.ctrl.BladeController;
|
|
import org.springblade.core.boot.ctrl.BladeController;
|
|
import org.springblade.core.tool.api.R;
|
|
import org.springblade.core.tool.api.R;
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
-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 java.util.*;
|
|
import java.util.*;
|
|
|
|
|
|
@@ -28,11 +25,10 @@ public class FundAccountIntercourseController extends BladeController {
|
|
/**
|
|
/**
|
|
* 往来款列表
|
|
* 往来款列表
|
|
*
|
|
*
|
|
- * @param condition 查询条件
|
|
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @PostMapping("/list")
|
|
|
|
- public R getList(@RequestBody Map<String, Object> condition) {
|
|
|
|
|
|
+ @GetMapping("/list")
|
|
|
|
+ public R getList() {
|
|
return R.list(fundAccountIntercourseService.getFundAccountIntercourse());
|
|
return R.list(fundAccountIntercourseService.getFundAccountIntercourse());
|
|
}
|
|
}
|
|
|
|
|