fix: 手动添加订单关联任务这一期不做
This commit is contained in:
parent
285b351e2e
commit
6e7c74dd2f
@ -204,11 +204,6 @@ public class OrderBiz {
|
|||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ResponseEntity<PageResult<Object>> relevanceOrder() {
|
|
||||||
// TODO获取当前登录用户,通过手机号和订单号进行关联
|
|
||||||
return new ResponseEntity<>(HttpStatus.OK);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void addOrder(AddOrderDTO addOrderDTO) {
|
public void addOrder(AddOrderDTO addOrderDTO) {
|
||||||
|
|
||||||
|
@ -101,12 +101,5 @@ public class OrderMainController {
|
|||||||
public ResponseEntity<OrderAllDetailVO> queryOrderDetail(@PathVariable("id") Long id) {
|
public ResponseEntity<OrderAllDetailVO> queryOrderDetail(@PathVariable("id") Long id) {
|
||||||
return ResponseEntity.ok(orderBiz.queryOrderDetail(id));
|
return ResponseEntity.ok(orderBiz.queryOrderDetail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("用户端关联订单")
|
|
||||||
@PostMapping("/relevanceOrder")
|
|
||||||
public ResponseEntity<Object> relevanceOrder(@ApiParam(value = "订单编号", required = true, example = "JS2025071300001")String orderNO) {
|
|
||||||
orderBiz.relevanceOrder();
|
|
||||||
return new ResponseEntity<>(HttpStatus.OK);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user