jyy
2021-08-20 5f29f86819e170faaf0159f730d83ad19c8bd2a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.matrix.system.wechart.templateMsg.Task;
 
import com.matrix.system.wechart.templateMsg.UniformMsgPojo;
 
import java.util.Map;
 
/**
 * 动态构建消息主体内容
 * @author jyy
 *
 */
public interface TemplateMessageBulder {
    /**
     *  * 返回的map中 如果包含错误消息用error属性来表示
     * @param param
     * @return
     */
    Map buildMsg(Map param);
}