VisualdevShortLinkEntity.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. package jnpf.base.entity;
  2. import jnpf.base.entity.SuperEntity;
  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. * @author JNPF开发平台组
  14. * @version V3.4.2
  15. * @copyright 引迈信息技术有限公司
  16. * @date 2022/12/30 11:10:44
  17. */
  18. @Data
  19. @TableName("base_visual_link")
  20. public class VisualdevShortLinkEntity extends SuperExtendEntity.SuperExtendEnabledEntity<String> {
  21. /**
  22. * 短链接
  23. */
  24. @TableField("F_SHORT_LINK")
  25. private String shortLink;
  26. /**
  27. * 外链填单开关
  28. */
  29. @TableField("F_FORM_USE")
  30. private Integer formUse;
  31. /**
  32. * 外链填单
  33. */
  34. @TableField("F_FORM_LINK")
  35. private String formLink;
  36. /**
  37. * 外链密码开关
  38. */
  39. @TableField("F_FORM_PASS_USE")
  40. private Integer formPassUse;
  41. /**
  42. * 外链填单密码
  43. */
  44. @TableField("F_FORM_PASSWORD")
  45. private String formPassword;
  46. /**
  47. * 公开查询开关
  48. */
  49. @TableField("F_COLUMN_USE")
  50. private Integer columnUse;
  51. /**
  52. * 公开查询
  53. */
  54. @TableField("F_COLUMN_LINK")
  55. private String columnLink;
  56. /**
  57. * 查询密码开关
  58. */
  59. @TableField("F_COLUMN_PASS_USE")
  60. private Integer columnPassUse;
  61. /**
  62. * 公开查询密码
  63. */
  64. @TableField("F_COLUMN_PASSWORD")
  65. private String columnPassword;
  66. /**
  67. * 查询条件
  68. */
  69. @TableField("F_COLUMN_CONDITION")
  70. private String columnCondition;
  71. /**
  72. * 显示内容
  73. */
  74. @TableField("F_COLUMN_TEXT")
  75. private String columnText;
  76. /**
  77. * PC端链接
  78. */
  79. @TableField("F_REAL_PC_LINK")
  80. private String realPcLink;
  81. /**
  82. * App端链接
  83. */
  84. @TableField("F_REAL_APP_LINK")
  85. private String realAppLink;
  86. /**
  87. * 用户id
  88. */
  89. @TableField("F_USER_ID")
  90. private String userId;
  91. }