嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-service/src/main/java/com/hai/service/HighUserCouponService.java

51 lines
1.1 KiB

package com.hai.service;
import com.hai.entity.HighUserCoupon;
import com.hai.model.HighUserCouponModel;
import java.util.List;
import java.util.Map;
/**
* @Auther: 胡锐
* @Description: 用户的卡卷
* @Date: 2021/3/27 16:06
*/
public interface HighUserCouponService {
/**
* @Author 胡锐
* @Description 增加
* @Date 2021/3/27 16:08
**/
void insertUserCoupon(HighUserCoupon highUserCoupon);
/**
* @Author 胡锐
* @Description 修改
* @Date 2021/3/27 16:08
**/
void updateUserCoupon(HighUserCoupon highUserCoupon);
/**
* @Author 胡锐
* @Description 获取已到期的卡卷
* @Date 2021/3/27 16:09
**/
List<HighUserCoupon> getOverdueCoupon();
/**
* @Author 胡锐
* @Description 查询用户列表
* @Date 2021/3/27 17:21
**/
List<HighUserCouponModel> getUserCouponList(Map<String,Object> map);
/**
* @Author 胡锐
* @Description 根据用户id 和 卡卷id查询
* @Date 2021/3/27 17:42
**/
HighUserCoupon getUserCoupon(Long userId, Long couponId);
}