| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- package jnpf.base.entity;
- import jnpf.base.entity.SuperEntity;
- import com.baomidou.mybatisplus.annotation.FieldFill;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import java.util.Date;
- /**
- * 在线开发表单外链实体
- *
- * @author JNPF开发平台组
- * @version V3.4.2
- * @copyright 引迈信息技术有限公司
- * @date 2022/12/30 11:10:44
- */
- @Data
- @TableName("base_visual_link")
- public class VisualdevShortLinkEntity extends SuperExtendEntity.SuperExtendEnabledEntity<String> {
- /**
- * 短链接
- */
- @TableField("F_SHORT_LINK")
- private String shortLink;
- /**
- * 外链填单开关
- */
- @TableField("F_FORM_USE")
- private Integer formUse;
- /**
- * 外链填单
- */
- @TableField("F_FORM_LINK")
- private String formLink;
- /**
- * 外链密码开关
- */
- @TableField("F_FORM_PASS_USE")
- private Integer formPassUse;
- /**
- * 外链填单密码
- */
- @TableField("F_FORM_PASSWORD")
- private String formPassword;
- /**
- * 公开查询开关
- */
- @TableField("F_COLUMN_USE")
- private Integer columnUse;
- /**
- * 公开查询
- */
- @TableField("F_COLUMN_LINK")
- private String columnLink;
- /**
- * 查询密码开关
- */
- @TableField("F_COLUMN_PASS_USE")
- private Integer columnPassUse;
- /**
- * 公开查询密码
- */
- @TableField("F_COLUMN_PASSWORD")
- private String columnPassword;
- /**
- * 查询条件
- */
- @TableField("F_COLUMN_CONDITION")
- private String columnCondition;
- /**
- * 显示内容
- */
- @TableField("F_COLUMN_TEXT")
- private String columnText;
- /**
- * PC端链接
- */
- @TableField("F_REAL_PC_LINK")
- private String realPcLink;
- /**
- * App端链接
- */
- @TableField("F_REAL_APP_LINK")
- private String realAppLink;
- /**
- * 用户id
- */
- @TableField("F_USER_ID")
- private String userId;
- }
|