Commit 9ddf345b authored by fangxinjiang's avatar fangxinjiang

派单分项目派单状态处理

parent 47760d94
......@@ -13,6 +13,7 @@ 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.multipart.MultipartFile;
import javax.annotation.Resource;
import java.io.IOException;
......@@ -59,7 +60,8 @@ public class EkpOrderController {
*/
@Schema(description = "接收处理ekp附件")
@PostMapping(value = "/receiveOrderNew")
public R receiveOrder(OrderAttVo vo) throws IOException {
public R receiveOrder(OrderAttVo vo, MultipartFile[] file) throws IOException {
log.error(file.toString());
return tOrderService.receiveOrderNew(vo);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment