| | |
| | | */ |
| | | @GetMapping("deliverGoods/{id}") |
| | | @RequiresPermissions("deliverGoods:update") |
| | | public String deliverGoods(@PathVariable long id, Model model) { |
| | | public String deliverGoods(@PathVariable Long id, Model model) { |
| | | AdminClothesDeliverGoodsVo data = new AdminClothesDeliverGoodsVo(); |
| | | ClothesOrder clothesOrder = clothesOrderMapper.selectById(id); |
| | | data.setId(clothesOrder.getId()); |
| | | data.setName(clothesOrder.getName()); |
| | | data.setPhone(clothesOrder.getPhone()); |
| | | data.setAddress(clothesOrder.getAddress()); |
| | | data.setExpressCom("极兔快递"); |
| | | MallExpressInfo mallExpressInfo = mallExpressInfoMapper.selectOne( |
| | | Wrappers.lambdaQuery(MallExpressInfo.class) |