ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package jnpf.permission.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import jnpf.base.entity.SuperExtendEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
@EqualsAndHashCode(callSuper = true)
@Data
@TableName("base_action")
public class ActionEntity extends SuperExtendEntity<String> {
 
    /**
     * 动作名称
     */
    @TableField("f_full_name")
    private String fullName;
 
    /**
     * 动作编码
     */
    @TableField("f_en_code")
    private String enCode;
 
    /**
     * 说明
     */
    @TableField("f_description")
    private String description;
 
 
    /**
     * 是否系统(1-自定义 2-自定义)
     */
    @TableField("f_type")
    private Integer type;
 
    /**
     * 启用
     */
    @TableField("f_enabled_mark")
    private String enabledMark;
}