嗨森逛服务
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/HighCouponAgentService.java

33 lines
787 B

package com.hai.service;
import com.hai.entity.HighCouponAgentCode;
import com.hai.entity.HighCouponAgentRel;
import java.security.PrivateKey;
import java.util.List;
import java.util.Map;
/**
* @Auther: 胡锐
* @Description: 代理商与卡券的声音
* @Date: 2021/4/20 22:59
*/
public interface HighCouponAgentService {
/**
* @Author 胡锐
* @Description 卡券分配给代理商
* @Date 2021/4/20 23:01
**/
void assignCouponAgent(HighCouponAgentRel highCouponAgentRel);
/**
* @Author 胡锐
* @Description 根据卡券id和代理商id 查询
* @Date 2021/4/20 23:52
**/
HighCouponAgentRel getRelByCouponAgent(Long couponId,Long agentId);
List<HighCouponAgentRel> getCouponAgentList(Map<String, Object> map);
}