update
This commit is contained in:
@@ -10,12 +10,55 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
public class CollectIconList implements Serializable {
|
||||
CollectIconList(){
|
||||
this.status = 0;
|
||||
}
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getUrl_id() {
|
||||
return url_id;
|
||||
}
|
||||
|
||||
public void setUrl_id(int url_id) {
|
||||
this.url_id = url_id;
|
||||
}
|
||||
|
||||
public String getIcon_url() {
|
||||
return icon_url;
|
||||
}
|
||||
|
||||
public void setIcon_url(String icon_url) {
|
||||
this.icon_url = icon_url;
|
||||
}
|
||||
|
||||
public String getQr_url() {
|
||||
return qr_url;
|
||||
}
|
||||
|
||||
public void setQr_url(String qr_url) {
|
||||
this.qr_url = qr_url;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 网址id
|
||||
*/
|
||||
private String url_id;
|
||||
private Integer url_id;
|
||||
|
||||
/**
|
||||
* 图片地址
|
||||
|
@@ -8,6 +8,86 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
public class UrlCateList implements Serializable {
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Long createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public Long getUrlNumber() {
|
||||
return urlNumber;
|
||||
}
|
||||
|
||||
public void setUrlNumber(Long urlNumber) {
|
||||
this.urlNumber = urlNumber;
|
||||
}
|
||||
|
||||
public Long getWeigh() {
|
||||
return weigh;
|
||||
}
|
||||
|
||||
public void setWeigh(Long weigh) {
|
||||
this.weigh = weigh;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Byte getNeedLogin() {
|
||||
return needLogin;
|
||||
}
|
||||
|
||||
public void setNeedLogin(Byte needLogin) {
|
||||
this.needLogin = needLogin;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Integer getRootCateId() {
|
||||
return rootCateId;
|
||||
}
|
||||
|
||||
public void setRootCateId(Integer rootCateId) {
|
||||
this.rootCateId = rootCateId;
|
||||
}
|
||||
|
||||
public String getIco() {
|
||||
return ico;
|
||||
}
|
||||
|
||||
public void setIco(String ico) {
|
||||
this.ico = ico;
|
||||
}
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
|
@@ -8,6 +8,142 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
public class UrlList implements Serializable {
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
|
||||
public Integer getCateId() {
|
||||
return cateId;
|
||||
}
|
||||
|
||||
public void setCateId(Integer cateId) {
|
||||
this.cateId = cateId;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public Long getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Long createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public Long getViews() {
|
||||
return views;
|
||||
}
|
||||
|
||||
public void setViews(Long views) {
|
||||
this.views = views;
|
||||
}
|
||||
|
||||
public String getTags() {
|
||||
return tags;
|
||||
}
|
||||
|
||||
public void setTags(String tags) {
|
||||
this.tags = tags;
|
||||
}
|
||||
|
||||
public Long getWeigh() {
|
||||
return weigh;
|
||||
}
|
||||
|
||||
public void setWeigh(Long weigh) {
|
||||
this.weigh = weigh;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
|
||||
public void setDesc(String desc) {
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public Byte getNeedLogin() {
|
||||
return needLogin;
|
||||
}
|
||||
|
||||
public void setNeedLogin(Byte needLogin) {
|
||||
this.needLogin = needLogin;
|
||||
}
|
||||
|
||||
public String getAgentHint() {
|
||||
return agentHint;
|
||||
}
|
||||
|
||||
public void setAgentHint(String agentHint) {
|
||||
this.agentHint = agentHint;
|
||||
}
|
||||
|
||||
public Byte getIsNeedAgent() {
|
||||
return isNeedAgent;
|
||||
}
|
||||
|
||||
public void setIsNeedAgent(Byte isNeedAgent) {
|
||||
this.isNeedAgent = isNeedAgent;
|
||||
}
|
||||
|
||||
public Byte getIsAd() {
|
||||
return isAd;
|
||||
}
|
||||
|
||||
public void setIsAd(Byte isAd) {
|
||||
this.isAd = isAd;
|
||||
}
|
||||
|
||||
public Byte getIsTop() {
|
||||
return isTop;
|
||||
}
|
||||
|
||||
public void setIsTop(Byte isTop) {
|
||||
this.isTop = isTop;
|
||||
}
|
||||
|
||||
public Byte getIsEncrypt() {
|
||||
return isEncrypt;
|
||||
}
|
||||
|
||||
public void setIsEncrypt(Byte isEncrypt) {
|
||||
this.isEncrypt = isEncrypt;
|
||||
}
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
|
Reference in New Issue
Block a user