Files
love-nav/src/main/java/com/lovenav/entity/Banners.java

43 lines
611 B
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 java.util.Date;
import lombok.Data;
/**
* ln_banners
*/
@Data
public class Banners implements Serializable {
/**
* id
*/
private Integer id;
/**
* 图片url
*/
private String imgUrl;
/**
* 权重
*/
private Integer weigh;
/**
* 跳转链接
*/
private String url;
/**
* 状态0有效/1无效
*/
private Byte bannerStatus;
/**
* 创建时间
*/
private Date createtime;
private static final long serialVersionUID = 1L;
}