实体层,dao层基本创建

This commit is contained in:
2023-12-19 14:04:28 +08:00
parent e8a518bd6b
commit 0721107407
54 changed files with 2970 additions and 8 deletions

View File

@@ -0,0 +1,62 @@
package com.lovenav.entity;
import java.io.Serializable;
import lombok.Data;
/**
* ln_url_cate_list
*/
@Data
public class UrlCateList implements Serializable {
/**
* id
*/
private Integer id;
/**
* 名称
*/
private String name;
/**
* 创建时间
*/
private Integer createtime;
/**
* url 数量
*/
private Long urlNumber;
/**
* 权重
*/
private Long weigh;
/**
* 状态
*/
private Byte status;
/**
* 需要登录才能查看
*/
private Byte needLogin;
/**
* 用户id
*/
private Integer userId;
/**
* 根标签
*/
private Integer rootCateId;
/**
* 图标
*/
private String ico;
private static final long serialVersionUID = 1L;
}