24 lines
521 B
Java
24 lines
521 B
Java
|
package com.zcloud.service.announcement;
|
||
|
import com.zcloud.entity.PageData;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* 公告功能
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
public interface TemplateAnnounService {
|
||
|
|
||
|
/**
|
||
|
* 发送通知公告根据模板信息
|
||
|
* @param templateBianma 模板编码
|
||
|
* @param noticeUserId 发送人id
|
||
|
* @param SYNOPSIS SYNOPSIS
|
||
|
* @param notRepr 模板 信息
|
||
|
*/
|
||
|
public void sendOutNoticeAnnouncement (String templateBianma,String noticeUserId,String SYNOPSIS, Map<String,Object> notRepr);
|
||
|
|
||
|
}
|