|
|
@ -36,10 +36,7 @@ import com.yxt.common.core.vo.PagerVo; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
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.List; |
|
|
|
|
|
|
@ -335,4 +332,9 @@ public class BusDeliveredApplyRest implements BusDeliveredApplyFeign { |
|
|
|
public ResultBean<String> saveRetrievalApplyInfo(AppDeliveredApplyDto appDeliveredApplyDto) { |
|
|
|
return busDeliveredApplyService.saveRetrievalApplyInfo(appDeliveredApplyDto); |
|
|
|
} |
|
|
|
@PostMapping("pushReport") |
|
|
|
@ApiOperation("测试推送车辆利润报表") |
|
|
|
ResultBean pushReport(@RequestParam("sid")String sid){ |
|
|
|
return busDeliveredApplyService.pushReport(sid); |
|
|
|
} |
|
|
|
} |
|
|
|