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.Dict;
|
| import com.stylefeng.guns.core.common.constant.dictmap.base.AbstractDictMap;
|
| /**
| * 用户日志记录
| *
| * @author fengshuonan
| * @date 2017-05-06 15:01
| */
| public class UserAuthenticationDict extends AbstractDictMap {
|
| @Override
| public void init() {
| put("id","实名认证id");
| put("state","审核状态(1待审核,2审核成功,3审核失败)");
| put("isDelete","是否删除(1正常,2删除)");
| }
|
| @Override
| protected void initBeWrapped() {
|
| }
| }
|
|