From df97e1f450f58dbcf97f8f50d7b04c979d172816 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A7=E6=97=B6=E4=BB=A3=E7=9A=84=E5=B0=8F=E9=9D=92?= =?UTF-8?q?=E5=B9=B4=E5=91=80?= <497157812@qq.com> Date: Sat, 17 Jul 2021 22:58:10 +0800 Subject: [PATCH] Create AccessAuthority.java --- .../dao/entity/AccessAuthority.java | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 report-core/src/main/java/com/anjiplus/template/gaea/business/modules/accessauthority/dao/entity/AccessAuthority.java diff --git a/report-core/src/main/java/com/anjiplus/template/gaea/business/modules/accessauthority/dao/entity/AccessAuthority.java b/report-core/src/main/java/com/anjiplus/template/gaea/business/modules/accessauthority/dao/entity/AccessAuthority.java new file mode 100755 index 00000000..54e08689 --- /dev/null +++ b/report-core/src/main/java/com/anjiplus/template/gaea/business/modules/accessauthority/dao/entity/AccessAuthority.java @@ -0,0 +1,43 @@ + +package com.anjiplus.template.gaea.business.modules.accessauthority.dao.entity; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import com.anji.plus.gaea.curd.entity.GaeaBaseEntity; +import com.baomidou.mybatisplus.annotation.TableName; +import javax.validation.constraints.*; +import java.util.Date; +/** +* @description 权限管理 entity +* @author 木子李·De +* @date 2019-02-17 08:50:10.009 +**/ +@TableName(value="access_authority") +@Data +public class AccessAuthority extends GaeaBaseEntity { + /** 父菜单代码 */ + private String parentTarget; + + /** 菜单代码 */ + private String target; + + /** 菜单名称 */ + private String targetName; + + /** 按钮代码 */ + private String action; + + /** 按钮名称 */ + private String actionName; + + /** 0--未删除 1--已删除 DIC_NAME=DEL_FLAG */ + private Integer deleteFlag; + + /** 0--已禁用 1--已启用 DIC_NAME=ENABLE_FLAG */ + private Integer enableFlag; + + private Integer sort; + + + +} \ No newline at end of file