|
@@ -13,6 +13,7 @@ import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
+import oracle.jdbc.proxy.annotation.Post;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
@@ -860,4 +861,20 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public RESTfulResult revokeOutBound(@RequestBody Map<String, Object> map) {
|
|
public RESTfulResult revokeOutBound(@RequestBody Map<String, Object> map) {
|
|
|
return tmsFeign.revokeOutBound(map);
|
|
return tmsFeign.revokeOutBound(map);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation(value = "查询车辆登记单信息")
|
|
|
|
|
+ @PostMapping("/likeTransitOrders")
|
|
|
|
|
+ public Map<String, Object> likeTransitOrders(@RequestBody(required = false) Map<String, Object> map,
|
|
|
|
|
+ Integer apiId,
|
|
|
|
|
+ Integer pageNum,
|
|
|
|
|
+ Integer pageSize) {
|
|
|
|
|
+ return tmsFeign.likeTransitOrders(map == null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation(value = "新增车辆登记单信息")
|
|
|
|
|
+ @PostMapping("/insertTmsTransitOrder")
|
|
|
|
|
+ public Map<String,Object> insertTmsTransitOrder(@RequestBody Map<String,Object> map) {
|
|
|
|
|
+ return tmsFeign.insertTmsTransitOrder(map);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|