hjm
2022-10-05 ff9efd8fe14084ae31d42d865de2cc007c086bf4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.stylefeng.guns.core.common.constant.dictmap;
 
import com.stylefeng.guns.core.common.constant.dictmap.base.AbstractDictMap;
 
/**
 * 通知的映射
 *
 * @author fengshuonan
 * @date 2017-05-06 15:01
 */
public class NoticeMap extends AbstractDictMap {
 
    @Override
    public void init() {
        put("title", "标题");
        put("content", "内容");
    }
 
    @Override
    protected void initBeWrapped() {
    }
}