|
|
@@ -11,6 +11,7 @@ import com.steerinfo.dil.util.BaseRESTfulController;
|
|
|
import com.steerinfo.dil.util.ExcelToolUtils;
|
|
|
import com.steerinfo.dil.util.Util;
|
|
|
import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
@@ -1089,4 +1090,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageSize) {
|
|
|
return tmsFeign.purchaseTrainsOrderList(map == null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("吊装信息")
|
|
|
+ @PostMapping("/disposeHandling")
|
|
|
+ public Map<String,Object> disposeHandling(@RequestBody Map<String,Object> map) {
|
|
|
+ return tmsFeign.disposeHandling(map);
|
|
|
+ }
|
|
|
}
|