ModuleEntity.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package jnpf.base.entity;
  2. import jnpf.base.entity.SuperEntity;
  3. import com.baomidou.mybatisplus.annotation.FieldFill;
  4. import com.baomidou.mybatisplus.annotation.TableField;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import io.swagger.v3.oas.annotations.media.Schema;
  8. import lombok.Data;
  9. import java.io.Serializable;
  10. import java.util.Date;
  11. /**
  12. * 系统功能
  13. *
  14. * @author JNPF开发平台组
  15. * @version V3.1.0
  16. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  17. * @date 2019年9月27日 上午9:18
  18. */
  19. @Data
  20. @TableName("base_module")
  21. public class ModuleEntity extends SuperExtendEntity.SuperExtendDEEntity<String> implements Serializable {
  22. /**
  23. * 功能上级
  24. */
  25. @TableField("f_parent_id")
  26. private String parentId;
  27. /**
  28. * 功能类别:1-目录 2-页面 3-功能 4-字典 5-报表(原) 6-大屏 7-外链 8-门户, 9-流程,10-报表,11-回传
  29. */
  30. @TableField("f_type")
  31. private Integer type;
  32. /**
  33. * 功能名称
  34. */
  35. @TableField("f_full_name")
  36. private String fullName;
  37. /**
  38. * 功能编码
  39. */
  40. @TableField("f_en_code")
  41. private String enCode;
  42. /**
  43. * 路由地址
  44. */
  45. @TableField("f_url_address")
  46. private String urlAddress;
  47. /**
  48. * 页面地址
  49. */
  50. @TableField("f_page_address")
  51. private String pageAddress;
  52. /**
  53. * 按钮权限
  54. */
  55. @TableField("f_is_button_authorize")
  56. private Integer isButtonAuthorize;
  57. /**
  58. * 列表权限
  59. */
  60. @TableField("f_is_column_authorize")
  61. private Integer isColumnAuthorize;
  62. /**
  63. * 数据权限
  64. */
  65. @TableField("f_is_data_authorize")
  66. private Integer isDataAuthorize;
  67. /**
  68. * 表单权限
  69. */
  70. @TableField("f_is_form_authorize")
  71. private Integer isFormAuthorize;
  72. /**
  73. * 扩展属性
  74. */
  75. @TableField("f_property_json")
  76. private String propertyJson;
  77. /**
  78. * 菜单图标
  79. */
  80. @TableField("f_icon")
  81. private String icon;
  82. /**
  83. * 链接目标
  84. */
  85. @TableField("f_link_target")
  86. private String linkTarget;
  87. /**
  88. * 菜单分类 Web、App
  89. */
  90. @TableField("f_category")
  91. private String category;
  92. /**
  93. * 关联功能id
  94. */
  95. @TableField("f_module_id")
  96. private String moduleId;
  97. /**
  98. * 关联系统id
  99. */
  100. @TableField("f_system_id")
  101. private String systemId;
  102. }