VisualPersonalEntity.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package jnpf.onlinedev.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import jnpf.base.entity.SuperEntity;
  5. import lombok.Data;
  6. /**
  7. * 列表个性视图
  8. *
  9. * @author JNPF开发平台组
  10. * @version v5.1.0
  11. * @copyright 引迈信息技术有限公司
  12. * @date 2024/11/5 16:47:24
  13. */
  14. @Data
  15. @TableName("base_visual_personal")
  16. public class VisualPersonalEntity extends SuperEntity<String> {
  17. /**
  18. * 菜单id
  19. */
  20. @TableField("F_MENU_ID")
  21. private String menuId;
  22. /**
  23. * 个性视图名称
  24. */
  25. @TableField("F_full_name")
  26. private String fullName;
  27. /**
  28. * 类型:0-系统,1-其他
  29. */
  30. @TableField("F_TYPE")
  31. private Integer type;
  32. /**
  33. * 状态:0-其他,1-默认
  34. */
  35. @TableField("F_STATUS")
  36. private Integer status;
  37. /**
  38. * 查询字段
  39. */
  40. @TableField("F_SEARCH_LIST")
  41. private String searchList;
  42. /**
  43. * 列表字段
  44. */
  45. @TableField("F_COLUMN_LIST")
  46. private String columnList;
  47. }