37 lines
740 B
Java
37 lines
740 B
Java
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);
|
|
|
|
/**
|
|
* 新增礼金信息
|
|
*/
|
|
int insertGiftCoupon(GiftCoupon giftCoupon);
|
|
|
|
/**
|
|
* 根据礼金Key更新礼金信息
|
|
*/
|
|
int updateGiftCoupon(GiftCoupon giftCoupon);
|
|
|
|
}
|