MrShi
86 分钟以前 e9a7cddce776382916e975402986144a88899ac5
server/services/src/main/java/com/doumee/service/business/CouponService.java
对比新文件
@@ -0,0 +1,30 @@
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);
    List<Coupon> findValidList();
}