DataSetEntity.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package jnpf.base.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. /**
  6. * 数据集管理
  7. *
  8. * @author JNPF开发平台组
  9. * @version v5.0.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date 2024/5/6 18:21:15
  12. */
  13. @Data
  14. @TableName("base_data_set")
  15. public class DataSetEntity extends SuperExtendEntity<String> {
  16. /**
  17. * 关联的数据类型
  18. */
  19. @TableField("F_OBJECT_TYPE")
  20. private String objectType;
  21. /**
  22. * 关联的数据id
  23. */
  24. @TableField("F_OBJECT_ID")
  25. private String objectId;
  26. /**
  27. * 数据集名称
  28. */
  29. @TableField("F_FULL_NAME")
  30. private String fullName;
  31. /**
  32. * 数据库连接
  33. */
  34. @TableField("F_DB_LINK_ID")
  35. private String dbLinkId;
  36. /**
  37. * 数据sql语句
  38. */
  39. @TableField("F_DATA_CONFIG_JSON")
  40. private String dataConfigJson;
  41. /**
  42. * 参数json
  43. */
  44. @TableField("F_PARAMETER_JSON")
  45. private String parameterJson;
  46. /**
  47. * 字段json
  48. */
  49. @TableField("F_FIELD_JSON")
  50. private String fieldJson;
  51. /**
  52. * 类型:1-sql语句,2-配置式
  53. */
  54. @TableField("f_type")
  55. private Integer type;
  56. /**
  57. * 配置json
  58. */
  59. @TableField("f_visual_config_json")
  60. private String visualConfigJson;
  61. /**
  62. * 筛选设置json
  63. */
  64. @TableField("f_filter_config_json")
  65. private String filterConfigJson;
  66. /**
  67. * 数据接口id
  68. */
  69. @TableField("f_interface_id")
  70. private String interfaceId;
  71. }