SystemEntity.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package jnpf.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import jnpf.base.entity.SuperExtendEntity;
  5. import lombok.Data;
  6. /**
  7. * 系统
  8. *
  9. * @author JNPF开发平台组
  10. * @version V3.1.0
  11. * @copyright 引迈信息技术有限公司
  12. * @date 2019年9月27日 上午9:18
  13. */
  14. @Data
  15. @TableName("base_system")
  16. public class SystemEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
  17. /**
  18. * 系统名称
  19. */
  20. @TableField("F_FULL_NAME")
  21. private String fullName;
  22. /**
  23. * 系统编号
  24. */
  25. @TableField("F_EN_CODE")
  26. private String enCode;
  27. /**
  28. * 门户数组
  29. */
  30. @TableField("F_PORTAL_ID")
  31. private String portalId;
  32. /**
  33. * app门户数组
  34. */
  35. @TableField("F_APP_PORTAL_ID")
  36. private String appPortalId;
  37. /**
  38. * 系统图标
  39. */
  40. @TableField("F_ICON")
  41. private String icon;
  42. /**
  43. * 是否是主系统(0-不是,1-是)
  44. */
  45. @TableField("F_IS_MAIN")
  46. private Integer isMain;
  47. /**
  48. * 扩展属性
  49. */
  50. @TableField("F_PROPERTY_JSON")
  51. private String propertyJson;
  52. /**
  53. * 偏好配置
  54. */
  55. @TableField("F_PREFERENCE_JSON")
  56. private String preferenceJson;
  57. /**
  58. * 图标背景色
  59. */
  60. @TableField("F_BACKGROUND_COLOR")
  61. private String backgroundColor;
  62. /**
  63. * 所属用户
  64. */
  65. @TableField("F_USER_ID")
  66. private String userId;
  67. /**
  68. * 授权id列表
  69. */
  70. @TableField("F_AUTHORIZE_ID")
  71. private String authorizeId;
  72. }