修正comment,banner接口
This commit is contained in:
@@ -2,6 +2,9 @@ package com.lovenav.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
@@ -9,6 +12,57 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
public class Banners implements Serializable {
|
||||
public Banners(){
|
||||
this.bannerStatus = 0;
|
||||
}
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getImgUrl() {
|
||||
return imgUrl;
|
||||
}
|
||||
|
||||
public void setImgUrl(String imgUrl) {
|
||||
this.imgUrl = imgUrl;
|
||||
}
|
||||
|
||||
public Integer getWeigh() {
|
||||
return weigh;
|
||||
}
|
||||
|
||||
public void setWeigh(Integer weigh) {
|
||||
this.weigh = weigh;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public Byte getBannerStatus() {
|
||||
return bannerStatus;
|
||||
}
|
||||
|
||||
public void setBannerStatus(Byte bannerStatus) {
|
||||
this.bannerStatus = bannerStatus;
|
||||
}
|
||||
|
||||
public Date getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Date createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
|
Reference in New Issue
Block a user