| | |
| | | package com.mzl.flower.mapper.point; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mzl.flower.dto.request.point.QueryCustomerPointDTO; |
| | | import com.mzl.flower.dto.request.point.QueryPointDetailDTO; |
| | | import com.mzl.flower.dto.response.point.CustomerPointDTO; |
| | | import com.mzl.flower.dto.response.point.CustomerPointDetailDTO; |
| | | import com.mzl.flower.entity.point.CustomerPoint; |
| | | import com.mzl.flower.entity.supplier.Station; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | | public interface CustomerPointMapper extends BaseMapper<CustomerPoint> { |
| | | |
| | | List<CustomerPointDTO> queryPage(@Param(value = "dto") QueryCustomerPointDTO dto, Page page); |
| | | |
| | | List<CustomerPointDetailDTO> queryCustomerDetails(@Param(value = "dto")QueryPointDetailDTO dto, Page page); |
| | | } |