Merge remote-tracking branch 'origin/hph' into dev

This commit is contained in:
牛叉闪闪
2024-07-18 17:26:45 +08:00
3 changed files with 8 additions and 1 deletions

View File

@@ -47,4 +47,7 @@ public interface TbOrderInfoMapper {
Map<String,String> selectByOrderId(String orderId);
List<SkuInfoPo> selectSkuByOrderId(String orderId);
TbOrderInfo selectById(Integer id);
}

View File

@@ -1067,7 +1067,7 @@ public class OrderService {
public Result getOrder(Integer orderId){
return Result.success(CodeEnum.SUCCESS, tbOrderInfoMapper.selectByPrimaryKey(orderId)) ;
return Result.success(CodeEnum.SUCCESS, tbOrderInfoMapper.selectById(orderId)) ;
}