DataInterfaceEntity.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package jnpf.base.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import com.alibaba.fastjson.annotation.JSONField;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. /**
  7. * 数据接口
  8. */
  9. @Data
  10. @TableName("base_data_interface")
  11. public class DataInterfaceEntity extends SuperExtendEntity.SuperExtendDEEntity<String> implements Serializable {
  12. /**
  13. * 分类
  14. */
  15. @TableField("f_category")
  16. private String category;
  17. /**
  18. * 接口名称
  19. */
  20. @TableField("f_full_name")
  21. private String fullName;
  22. /**
  23. * 接口编码
  24. */
  25. @TableField("f_en_code")
  26. private String enCode;
  27. /**
  28. * 类型(1-sql,2-静态数据,3-api)
  29. */
  30. @TableField("f_type")
  31. private Integer type;
  32. /**
  33. * 动作(3-查询)
  34. */
  35. @TableField("f_action")
  36. private Integer action;
  37. /**
  38. * 分页(0-禁用,1-启用)
  39. */
  40. @TableField("f_has_page")
  41. private Integer hasPage;
  42. /**
  43. * 后置接口(0-否 1-是)
  44. */
  45. @TableField("f_is_postposition")
  46. private Integer isPostPosition;
  47. /**
  48. * 数据配置json
  49. */
  50. @TableField("f_data_config_json")
  51. private String dataConfigJson;
  52. /**
  53. * 数据统计json
  54. */
  55. @TableField("f_data_count_json")
  56. private String dataCountJson;
  57. /**
  58. * 数据回显json
  59. */
  60. @TableField("f_data_echo_json")
  61. private String dataEchoJson;
  62. /**
  63. * 异常验证json
  64. */
  65. @TableField("f_data_exception_json")
  66. private String dataExceptionJson;
  67. /**
  68. * 数据处理json
  69. */
  70. @TableField("f_data_js_json")
  71. private String dataJsJson;
  72. /**
  73. * 参数json
  74. */
  75. @TableField("f_parameter_json")
  76. private String parameterJson;
  77. /**
  78. * 字段JSON
  79. */
  80. @TableField("f_field_json")
  81. private String fieldJson;
  82. }