1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.stylefeng.guns.core.common.constant.dictmap.Dict;
|
| import com.stylefeng.guns.core.common.constant.dictmap.base.AbstractDictMap;
|
| /**
| * 系统通知日志记录
| *
| * @author fengshuonan
| * @date 2017-05-06 15:01
| */
| public class NoticeDict extends AbstractDictMap {
|
| @Override
| public void init() {
| put("id","通知id");
| put("addTime","添加时间");
| put("title","标题");
| put("issue","是否发布(1未发布,2已发布)");
| put("content","内容");
| put("sendType","发送对象(1用户,2司机 ,3用户和司机)");
| put("sendTime","发送时间");
| }
|
| @Override
| protected void initBeWrapped() {
|
| }
| }
|
|