rk
2026-05-13 b908f030726721a2077fa2af924f35e2df9a24e1
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
package com.doumee.service.business;
 
import com.doumee.core.model.PageData;
import com.doumee.core.model.PageWrap;
import com.doumee.dao.business.model.Coupon;
 
import java.util.List;
 
public interface CouponService {
 
    Integer create(Coupon coupon);
 
    void deleteById(Integer id);
 
    void deleteByIdInBatch(List<Integer> ids);
 
    void updateById(Coupon coupon);
 
    void updateStatus(Coupon coupon);
 
    Coupon findById(Integer id);
 
    List<Coupon> findList(Coupon coupon);
 
    PageData<Coupon> findPage(PageWrap<Coupon> pageWrap);
 
    long count(Coupon coupon);
}