1
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.ruoyi.jarvis.mapper;
|
||||
|
||||
import com.ruoyi.jarvis.domain.GiftCoupon;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 礼金信息 Mapper 接口
|
||||
*/
|
||||
public interface GiftCouponMapper {
|
||||
|
||||
/**
|
||||
* 查询礼金列表(从订单表中汇总)
|
||||
*/
|
||||
List<GiftCoupon> selectGiftCouponList(GiftCoupon giftCoupon);
|
||||
|
||||
/**
|
||||
* 根据礼金Key查询详情
|
||||
*/
|
||||
GiftCoupon selectGiftCouponByKey(String giftCouponKey);
|
||||
|
||||
/**
|
||||
* 查询礼金统计信息
|
||||
*/
|
||||
GiftCoupon selectGiftCouponStatistics(GiftCoupon giftCoupon);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user