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
| 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 LabelDict extends AbstractDictMap {
|
| @Override
| public void init() {
| put("id","标签id");
| put("appLabelId","标签id");
| put("addTime","添加时间");
| put("name","标签名称");
| }
|
| @Override
| protected void initBeWrapped() {
|
| }
| }
|
|