Files
love-nav/src/main/java/com/lovenav/entity/UrlList.java
2023-12-22 10:35:16 +08:00

97 lines
1.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}