94 lines
2.1 KiB
Java
94 lines
2.1 KiB
Java
package com.ifish.entity;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.ifish.handler.CustomDateSerializer;
|
|
|
|
/**
|
|
* @ClassName: tbl_vender_list
|
|
* @date 2015年7月2日 下午16:40:00
|
|
*
|
|
*/
|
|
public class VenderList implements Serializable{
|
|
|
|
private static final long serialVersionUID = 8124293561934933084L;
|
|
//鱼缸厂编号
|
|
private String brandCode;
|
|
//logo
|
|
private String logo;
|
|
//鱼缸厂名称
|
|
private String brandName;
|
|
//品牌介绍
|
|
private String brandIntroduce;
|
|
//app展示
|
|
private String appShow;
|
|
//联系电话
|
|
private String contactPhone;
|
|
//联系地址
|
|
private String contactAddress;
|
|
//更新时间
|
|
private Date updateTime;
|
|
//创建时间
|
|
private Date createTime;
|
|
|
|
public String getBrandCode() {
|
|
return brandCode;
|
|
}
|
|
public void setBrandCode(String brandCode) {
|
|
this.brandCode = brandCode;
|
|
}
|
|
public String getBrandName() {
|
|
return brandName;
|
|
}
|
|
public void setBrandName(String brandName) {
|
|
this.brandName = brandName;
|
|
}
|
|
public String getBrandIntroduce() {
|
|
return brandIntroduce;
|
|
}
|
|
public void setBrandIntroduce(String brandIntroduce) {
|
|
this.brandIntroduce = brandIntroduce;
|
|
}
|
|
public String getAppShow() {
|
|
return appShow;
|
|
}
|
|
public void setAppShow(String appShow) {
|
|
this.appShow = appShow;
|
|
}
|
|
@JsonSerialize(using = CustomDateSerializer.class)
|
|
public Date getUpdateTime() {
|
|
return updateTime;
|
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
|
this.updateTime = updateTime;
|
|
}
|
|
@JsonSerialize(using = CustomDateSerializer.class)
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
public String getContactPhone() {
|
|
return contactPhone;
|
|
}
|
|
public void setContactPhone(String contactPhone) {
|
|
this.contactPhone = contactPhone;
|
|
}
|
|
public String getContactAddress() {
|
|
return contactAddress;
|
|
}
|
|
public void setContactAddress(String contactAddress) {
|
|
this.contactAddress = contactAddress;
|
|
}
|
|
public String getLogo() {
|
|
return logo;
|
|
}
|
|
public void setLogo(String logo) {
|
|
this.logo = logo;
|
|
}
|
|
|
|
}
|