| | |
| | | package com.xzx.gc.order.service; |
| | | |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.github.pagehelper.PageHelper; |
| | | import com.github.pagehelper.PageInfo; |
| | | import com.xzx.gc.common.constant.Constants; |
| | | import com.xzx.gc.common.utils.IdUtils; |
| | | import com.xzx.gc.entity.AddressInfo; |
| | |
| | | } |
| | | } |
| | | |
| | | public List<JhyOrderListVo> orderList(JhyOrderListDto orderListDto) { |
| | | return null; |
| | | public PageInfo<JhyOrderListVo> orderList(JhyOrderListDto orderListDto) { |
| | | PageHelper.startPage(orderListDto.getPageNo(), orderListDto.getPageSize()); |
| | | List<JhyOrderListVo> data = jhyOrderMapper.selectJhyOrderList(orderListDto); |
| | | return new PageInfo<>(data); |
| | | } |
| | | } |