ModuleFormEntity.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.util.Date;
  10. /**
  11. *
  12. * 表单权限
  13. * 版本: V3.1.0
  14. * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  15. * 作者: JNPF开发平台组
  16. * 日期: 2021-09-14
  17. */
  18. @Data
  19. @TableName("base_module_form")
  20. public class ModuleFormEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
  21. /**
  22. * 表单上级
  23. */
  24. @TableField("f_parent_id")
  25. private String parentId;
  26. /**
  27. * 表单名称
  28. */
  29. @TableField("f_full_name")
  30. private String fullName;
  31. /**
  32. * 表单编码
  33. */
  34. @TableField("f_en_code")
  35. private String enCode;
  36. /**
  37. * 扩展属性
  38. */
  39. @TableField("f_property_json")
  40. private String propertyJson;
  41. /**
  42. * 功能主键
  43. */
  44. @TableField("f_module_id")
  45. private String moduleId;
  46. /**
  47. * 字段规则 主从
  48. */
  49. @TableField("f_field_rule")
  50. private Integer fieldRule;
  51. /**
  52. * 绑定表格Id
  53. */
  54. @TableField("f_bind_table")
  55. private String bindTable;
  56. /**
  57. * 子表规则key
  58. */
  59. @TableField("f_child_table_key")
  60. private String childTableKey;
  61. }