cloudroam
2024-08-29 9891487fc5a112f180eab34caef9788bae2e3acf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}