97 lines
1.3 KiB
Java
97 lines
1.3 KiB
Java
package com.lovenav.entity;
|
||
|
||
import java.io.Serializable;
|
||
import lombok.Data;
|
||
|
||
/**
|
||
* ln_url_list
|
||
*/
|
||
@Data
|
||
public class UrlList implements Serializable {
|
||
/**
|
||
* id
|
||
*/
|
||
private Long id;
|
||
|
||
/**
|
||
* 网站名称
|
||
*/
|
||
private String name;
|
||
|
||
/**
|
||
* 网站图标
|
||
*/
|
||
private String icon;
|
||
|
||
/**
|
||
* 标签id
|
||
*/
|
||
private Integer cateId;
|
||
|
||
/**
|
||
* url
|
||
*/
|
||
private String url;
|
||
|
||
/**
|
||
* 创建时间
|
||
*/
|
||
private Long createtime;
|
||
|
||
/**
|
||
* 访问数量
|
||
*/
|
||
private Long views;
|
||
|
||
/**
|
||
* 标签
|
||
*/
|
||
private String tags;
|
||
|
||
/**
|
||
* 权重
|
||
*/
|
||
private Long weigh;
|
||
|
||
/**
|
||
* 状态
|
||
*/
|
||
private Byte status;
|
||
|
||
/**
|
||
* 描述
|
||
*/
|
||
private String desc;
|
||
|
||
/**
|
||
* 需要登录才能查看
|
||
*/
|
||
private Byte needLogin;
|
||
|
||
/**
|
||
* 代理提示语
|
||
*/
|
||
private String agentHint;
|
||
|
||
/**
|
||
* 是否需要代理 1需要0不需要
|
||
*/
|
||
private Byte isNeedAgent;
|
||
|
||
/**
|
||
* 是否广告1是0不是
|
||
*/
|
||
private Byte isAd;
|
||
|
||
/**
|
||
* 是否全局置顶1是0不是
|
||
*/
|
||
private Byte isTop;
|
||
|
||
/**
|
||
* 是否加密(1加密/0不加密)
|
||
*/
|
||
private Byte isEncrypt;
|
||
|
||
private static final long serialVersionUID = 1L;
|
||
} |