package com.mzl.flower.service.point;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.mzl.flower.dto.request.point.CustomerPointDetailDTO;
|
import com.mzl.flower.dto.request.point.CustomerPointDetailQueryDTO;
|
import com.mzl.flower.dto.response.point.CustomerPointDetailVO;
|
import com.mzl.flower.entity.point.CustomerPointDetail;
|
|
|
public interface CustomerPointDetailService extends IService<CustomerPointDetail> {
|
|
void save(CustomerPointDetailDTO customerPointDetailDTO);
|
|
void update(CustomerPointDetailDTO customerPointDetailDTO);
|
|
void delete(Long id);
|
|
Page<CustomerPointDetailVO> queryPage(CustomerPointDetailQueryDTO customerPointDetailQueryDTO, Page page);
|
}
|