package com.yeshi.fanli.entity.bus.invite;
|
|
import java.util.Date;
|
|
import javax.persistence.Transient;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 邀请好友图片
|
* @author Administrator
|
*
|
*/
|
@Table( "yeshi_ec_spread_img")
|
public class SpreadImg {
|
|
@Column(name = "si_id")
|
@Expose
|
private Long id;
|
|
@Expose
|
@Column(name="si_url")
|
private String url;
|
|
@Expose
|
@Column(name="si_createtime")
|
private Date createtime;
|
|
@Transient
|
private String md5;
|
|
public String getMd5() {
|
return md5;
|
}
|
|
public void setMd5(String md5) {
|
this.md5 = md5;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|