| | |
| | | import java.util.List; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.poi.ss.formula.functions.T; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | @PostMapping("/saveOrderOne") |
| | | @ResponseBody |
| | | @InnerAuth |
| | | public R<T> saveOrderOne(@RequestBody OrderDTO OrderDTO) { |
| | | public R<Long> saveOrderOne(@RequestBody OrderDTO OrderDTO) { |
| | | orderService.saveOrderOne(OrderDTO); |
| | | return R.ok(); |
| | | |