|
|
@@ -14,6 +14,7 @@ import com.steerinfo.dil.util.BaseRESTfulController;
|
|
|
import com.steerinfo.dil.util.DataChange;
|
|
|
import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import oracle.jdbc.proxy.annotation.Post;
|
|
|
import org.apache.log4j.Logger;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
@@ -145,4 +146,11 @@ public class BackgroundProcessingController extends BaseRESTfulController {
|
|
|
return failed(map,e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("修改运输订单状态")
|
|
|
+ @PostMapping("/submitOrderStatus")
|
|
|
+ public RESTfulResult submitOrderStatus(@RequestBody Map<String,Object> map) {
|
|
|
+ int i = backgroundProcessingMapper.submitOrderStatus(map);
|
|
|
+ return success();
|
|
|
+ }
|
|
|
}
|