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.
23 lines
356 B
23 lines
356 B
4 years ago
|
package com.hai.service;
|
||
|
|
||
|
import com.hai.entity.HighActivityAward;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 活动奖励
|
||
|
* @author hurui
|
||
|
*/
|
||
|
public interface HighActivityAwardService {
|
||
|
|
||
|
/**
|
||
|
* 根据活动信息查询
|
||
|
* @param activityId 活动基本信息
|
||
|
* @return
|
||
|
*/
|
||
|
List<HighActivityAward> getListByActivityId(Long activityId);
|
||
|
|
||
|
|
||
|
|
||
|
}
|