2021-03-30 09:45:17 +08:00
|
|
|
package com.sinosoft.activity.service;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.sinosoft.activity.domain.DrawInfo;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 抽奖活动管理对象Service接口
|
|
|
|
|
*
|
2021-03-31 09:27:33 +08:00
|
|
|
* @author xlh
|
2021-03-30 09:45:17 +08:00
|
|
|
* @date 2021-03-25
|
|
|
|
|
*/
|
|
|
|
|
public interface IDrawInfoService
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* 查询抽奖活动管理对象
|
|
|
|
|
*
|
|
|
|
|
* @param DRAWID 抽奖活动管理对象ID
|
|
|
|
|
* @return 抽奖活动管理对象
|
|
|
|
|
*/
|
|
|
|
|
public DrawInfo selectDrawInfoById(String DRAWID);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询抽奖活动管理对象列表
|
|
|
|
|
*
|
|
|
|
|
* @param drawInfo 抽奖活动管理对象
|
|
|
|
|
* @return 抽奖活动管理对象集合
|
|
|
|
|
*/
|
|
|
|
|
public List<DrawInfo> selectDrawInfoList(DrawInfo drawInfo);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增抽奖活动管理对象
|
|
|
|
|
*
|
|
|
|
|
* @param drawInfo 抽奖活动管理对象
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int insertDrawInfo(DrawInfo drawInfo);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改抽奖活动管理对象
|
|
|
|
|
*
|
|
|
|
|
* @param drawInfo 抽奖活动管理对象
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int updateDrawInfo(DrawInfo drawInfo);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除抽奖活动管理对象
|
|
|
|
|
*
|
|
|
|
|
* @param ids 需要删除的数据ID
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteDrawInfoByIds(String ids);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除抽奖活动管理对象信息
|
|
|
|
|
*
|
|
|
|
|
* @param DRAWID 抽奖活动管理对象ID
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteDrawInfoById(String DRAWID);
|
|
|
|
|
}
|