ModuleColumnEntity.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package jnpf.base.entity;
  2. import jnpf.base.entity.SuperExtendEntity;
  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_column")
  21. public class ModuleColumnEntity extends SuperExtendEntity.SuperExtendDEEntity<String> implements Serializable {
  22. /**
  23. * 列表上级
  24. */
  25. @TableField("f_parent_id")
  26. private String parentId;
  27. /**
  28. * 列表名称
  29. */
  30. @TableField("f_full_name")
  31. private String fullName;
  32. /**
  33. * 列表编码
  34. */
  35. @TableField("f_en_code")
  36. private String enCode;
  37. /**
  38. * 绑定表格Id
  39. */
  40. @TableField("f_bind_table")
  41. private String bindTable;
  42. /**
  43. * 绑定表格描述
  44. */
  45. @TableField("f_bind_table_name")
  46. private String bindTableName;
  47. /**
  48. * 扩展属性
  49. */
  50. @TableField("f_property_json")
  51. private String propertyJson;
  52. /**
  53. * 功能主键
  54. */
  55. @TableField("f_module_id")
  56. private String moduleId;
  57. /**
  58. * 字段规则 主从
  59. */
  60. @TableField("f_field_rule")
  61. private Integer fieldRule;
  62. /**
  63. * 子表规则key
  64. */
  65. @TableField("f_child_table_key")
  66. private String childTableKey;
  67. }