package com.ks.lucky.service.remote;
|
|
import com.ks.lucky.exception.LuckyActivitySponsorInfoException;
|
import com.ks.lucky.pojo.DO.LuckyActivitySponsorInfo;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* 活动赞助信息管理
|
*/
|
@Component
|
public class LuckyActivitySponsorInfoManager {
|
|
|
/**
|
* 添加赞助信息
|
*
|
* @param OpenInfo
|
* @throws LuckyActivitySponsorInfoException
|
*/
|
public void addOpenInfo(LuckyActivitySponsorInfo OpenInfo) throws LuckyActivitySponsorInfoException {
|
|
}
|
|
|
/**
|
* 修改赞助信息
|
*
|
* @param OpenInfo
|
* @throws LuckyActivitySponsorInfoException
|
*/
|
public void updateOpenInfo(LuckyActivitySponsorInfo OpenInfo) throws LuckyActivitySponsorInfoException {
|
|
}
|
|
|
/**
|
* 获取赞助信息列表
|
*
|
* @param activityId
|
* @return
|
*/
|
public LuckyActivitySponsorInfo getSponsorInfo(Long activityId) {
|
|
|
return null;
|
}
|
|
/**
|
* 获取赞助信息详情
|
*
|
* @param id
|
* @return
|
*/
|
public LuckyActivitySponsorInfo getSponsorInfoDetail(Long id) {
|
|
return null;
|
}
|
|
/**
|
* 删除赞助信息
|
*
|
* @param id
|
*/
|
|
public void deleteOpenInfo(Long id) {
|
|
}
|
|
|
}
|