xuhy
2025-01-16 2e97a0b58cc60cb076843b3a860732f71762cff7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.stylefeng.guns.core.common.constant.dictmap;
 
import com.stylefeng.guns.core.common.constant.dictmap.base.AbstractDictMap;
 
/**
 * 字典map
 *
 * @author fengshuonan
 * @date 2017-05-06 15:43
 */
public class DictMap extends AbstractDictMap {
 
    @Override
    public void init() {
        put("dictId","字典名称");
        put("dictName","字典名称");
        put("dictValues","字典内容");
    }
 
    @Override
    protected void initBeWrapped() {
 
    }
}