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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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.BatchDTO;
import com.mzl.flower.dto.request.menber.MemberDTO;
import com.mzl.flower.dto.request.point.PointGoodDTO;
import com.mzl.flower.dto.request.point.PointGoodQueryDTO;
import com.mzl.flower.dto.response.content.AnnouncementDTO;
import com.mzl.flower.dto.response.point.PointGoodVO;
import com.mzl.flower.entity.menber.Member;
import com.mzl.flower.entity.point.PointGood;
 
 
public interface PointGoodService extends IService<PointGood> {
 
    void save(PointGoodDTO pointGoodDTO);
 
    void update(PointGoodDTO pointGoodDTO);
    void batchDelete(BatchDTO batchDTO);
 
    void batchPublish(BatchDTO batchDTO);
 
    void batchOff(BatchDTO batchDTO);
 
    void delete(Long id);
 
    void copy(Long id);
 
    void changeStatus(Long id);
 
    PointGoodVO detail(Long id);
 
    Page<PointGoodVO> queryPage(PointGoodQueryDTO pointGoodQueryDTO,Page page);
}