rk
15 小时以前 3e210fac9492b90e21ca9bf76c1d9a8fda1f4388
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);
}