| | |
| | | package com.yeshi.fanli.service.inter.msg;
|
| | |
|
| | | import com.yeshi.fanli.dto.msg.MsgCommonDTO;
|
| | | import com.yeshi.fanli.entity.SystemEnum;
|
| | | import com.yeshi.fanli.entity.system.ConfigKeyEnum;
|
| | | import com.yeshi.fanli.exception.config.ConfigException;
|
| | |
|
| | |
| | | *
|
| | | * @param dto
|
| | | */
|
| | | public void addZhuShouMsg(MsgCommonDTO dto) throws ConfigException;
|
| | | public void addZhuShouMsg(MsgCommonDTO dto, SystemEnum systemEnum) throws ConfigException;
|
| | |
|
| | | /**
|
| | | * 添加官宣任务
|
| | | *
|
| | | * @param dto
|
| | | */
|
| | | public void addGuanXuanMsg(MsgCommonDTO dto) throws ConfigException;
|
| | | public void addGuanXuanMsg(MsgCommonDTO dto, SystemEnum systemEnum) throws ConfigException;
|
| | |
|
| | | /**
|
| | | * 添加通知大图消息
|
| | |
| | | * @param dto
|
| | | * @throws ConfigException
|
| | | */
|
| | | public void addNotifyMsg(MsgCommonDTO dto) throws ConfigException;
|
| | | public void addNotifyMsg(MsgCommonDTO dto, SystemEnum systemEnum) throws ConfigException;
|
| | |
|
| | | /**
|
| | | * 获取助手消息
|
| | | *
|
| | | * @return
|
| | | */
|
| | | public MsgCommonDTO getZhuShouMsg();
|
| | | public MsgCommonDTO getZhuShouMsg(SystemEnum systemEnum);
|
| | |
|
| | | /**
|
| | | * 获取官宣消息
|
| | | *
|
| | | * @return
|
| | | */
|
| | | public MsgCommonDTO getGuanXuanMsg();
|
| | | public MsgCommonDTO getGuanXuanMsg( SystemEnum systemEnum);
|
| | |
|
| | | /**
|
| | | * 获取通知大图消息
|
| | | *
|
| | | * @return
|
| | | */
|
| | | public MsgCommonDTO getNotifyMsg();
|
| | | public MsgCommonDTO getNotifyMsg(SystemEnum systemEnum);
|
| | |
|
| | | }
|