2021-04-08 10:37:14 +08:00
|
|
|
package com.sinosoft.activity.mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import com.sinosoft.activity.domain.ActPageConfigSubscribe;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 活动收集配置Mapper接口
|
|
|
|
|
*
|
|
|
|
|
* @author dy
|
|
|
|
|
* @date 2021-04-08
|
|
|
|
|
*/
|
|
|
|
|
public interface ActPageConfigSubscribeMapper
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* 查询活动收集配置
|
|
|
|
|
*
|
|
|
|
|
* @param id 活动收集配置ID
|
|
|
|
|
* @return 活动收集配置
|
|
|
|
|
*/
|
|
|
|
|
public ActPageConfigSubscribe selectActPageConfigSubscribeById(Integer id);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询活动收集配置列表
|
|
|
|
|
*
|
|
|
|
|
* @param actPageConfigSubscribe 活动收集配置
|
|
|
|
|
* @return 活动收集配置集合
|
|
|
|
|
*/
|
|
|
|
|
public List<ActPageConfigSubscribe> selectActPageConfigSubscribeList(ActPageConfigSubscribe actPageConfigSubscribe);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增活动收集配置
|
|
|
|
|
*
|
|
|
|
|
* @param actPageConfigSubscribe 活动收集配置
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int insertActPageConfigSubscribe(ActPageConfigSubscribe actPageConfigSubscribe);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改活动收集配置
|
|
|
|
|
*
|
|
|
|
|
* @param actPageConfigSubscribe 活动收集配置
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int updateActPageConfigSubscribe(ActPageConfigSubscribe actPageConfigSubscribe);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除活动收集配置
|
|
|
|
|
*
|
|
|
|
|
* @param id 活动收集配置ID
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteActPageConfigSubscribeById(Integer id);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除活动收集配置
|
|
|
|
|
*
|
|
|
|
|
* @param ids 需要删除的数据ID
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteActPageConfigSubscribeByIds(String[] ids);
|
2021-04-12 13:44:14 +08:00
|
|
|
/**
|
|
|
|
|
* 根据活动编码查询
|
|
|
|
|
* @param drawCode
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public ActPageConfigSubscribe selectActPageConfigSubscribeByCode(String drawCode);
|
2021-04-12 15:38:36 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据活动代码删除活动配置信息
|
|
|
|
|
* @param toStrArray
|
|
|
|
|
*/
|
|
|
|
|
public void deleteActPageConfigSubscribeByCode(String[] toStrArray);
|
2021-04-08 10:37:14 +08:00
|
|
|
}
|