admin
2019-11-20 8b2191df2f7d94aa299bd43dcbe97c94e5a61bbd
fanli/src/main/java/com/yeshi/fanli/service/inter/msg/MsgConfigService.java
@@ -1,12 +1,13 @@
package com.yeshi.fanli.service.inter.msg;
import com.yeshi.fanli.dto.msg.MsgCommonDTO;
import com.yeshi.fanli.exception.ConfigException;
import com.yeshi.fanli.exception.config.ConfigException;
public interface MsgConfigService {
   public String KEY_ZHUSHOU = "msg-config-zhushou";
   public String KEY_GUANXUAN = "msg-config-guanxuan";
   public String KEY_NOTIFY = "msg-config-notify";
   /**
    * 添加小助手消息
@@ -23,6 +24,14 @@
   public void addGuanXuanMsg(MsgCommonDTO dto) throws ConfigException;
   /**
    * 添加通知大图消息
    *
    * @param dto
    * @throws ConfigException
    */
   public void addNotifyMsg(MsgCommonDTO dto) throws ConfigException;
   /**
    * 获取助手消息
    * 
    * @return
@@ -35,4 +44,12 @@
    * @return
    */
   public MsgCommonDTO getGuanXuanMsg();
   /**
    * 获取通知大图消息
    *
    * @return
    */
   public MsgCommonDTO getNotifyMsg();
}