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.
20 lines
539 B
20 lines
539 B
package com.hai.service;
|
|
|
|
import com.hai.model.HighUserDiscountUnicomModel;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public interface HighOpenApiService {
|
|
|
|
|
|
/**
|
|
* @Author Sum1Dream
|
|
* @name getUserCouponsList.java
|
|
* @Description // 获取用户优惠券
|
|
* @Date 4:45 下午 2021/11/24
|
|
* @Param [java.util.Map<java.lang.String,java.lang.Object>]
|
|
* @return java.util.List<com.hai.model.HighUserDiscountUnicomModel>
|
|
*/
|
|
List<HighUserDiscountUnicomModel> getUserCouponsList(Map<String , Object> map);
|
|
}
|
|
|