ModuleDataAuthorizeEntity.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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_authorize")
  21. public class ModuleDataAuthorizeEntity extends SuperExtendEntity.SuperExtendDEEntity<String> implements Serializable {
  22. /**
  23. * 字段名称
  24. */
  25. @TableField("f_full_name")
  26. private String fullName;
  27. /**
  28. * 时间类型
  29. */
  30. @TableField("f_format")
  31. private String format;
  32. /**
  33. * 字段编码
  34. */
  35. @TableField("f_en_code")
  36. private String enCode;
  37. /**
  38. * 字段类型
  39. */
  40. @TableField("f_type")
  41. private String type;
  42. /**
  43. * 条件符号
  44. */
  45. @TableField("f_condition_symbol")
  46. private String conditionSymbol;
  47. /**
  48. * 条件符号Json
  49. */
  50. @TableField("f_property_json")
  51. private String conditionSymbolJson;
  52. /**
  53. * 条件内容
  54. */
  55. @TableField("f_condition_text")
  56. private String conditionText;
  57. /**
  58. * 扩展属性
  59. */
  60. @TableField("f_property_json")
  61. private String propertyJson;
  62. /**
  63. * 菜单主键
  64. */
  65. @TableField("f_module_id")
  66. private String moduleId;
  67. /**
  68. * 字段规则 主从
  69. */
  70. @TableField("f_field_rule")
  71. private Integer fieldRule;
  72. /**
  73. * 绑定表格Id
  74. */
  75. @TableField("f_bind_table")
  76. private String bindTable;
  77. /**
  78. * 子表规则key
  79. */
  80. @TableField("f_child_table_key")
  81. private String childTableKey;
  82. }