| | |
| | | package com.yeshi.fanli.entity.bus.invite;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | | import org.springframework.data.annotation.Transient;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | @Table("yeshi_ec_spread_user_img")
|
| | | public class SpreadUserImg {
|
| | | |
| | | @Column(name="si_id")
|
| | | @Expose
|
| | | private Long id;
|
| | | |
| | | @Column(name="si_uid")
|
| | | @Expose
|
| | | private Long uid;
|
| | | |
| | | @Column(name="si_type")
|
| | | @Expose
|
| | | private Integer type;
|
| | | |
| | | @Column(name="si_url")
|
| | | @Expose
|
| | | private String url;
|
| | | |
| | | @Column(name="si_createtime")
|
| | | @Expose
|
| | | 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 Long getUid() {
|
| | | return uid;
|
| | | }
|
| | |
|
| | | public void setUid(Long uid) {
|
| | | this.uid = uid;
|
| | | }
|
| | |
|
| | | public Integer getType() {
|
| | | return type;
|
| | | }
|
| | |
|
| | | public void setType(Integer type) {
|
| | | this.type = type;
|
| | | }
|
| | |
|
| | | 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;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.bus.invite; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | import org.springframework.data.annotation.Transient; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @Table("yeshi_ec_spread_user_img") |
| | | public class SpreadUserImg { |
| | | |
| | | @Column(name="si_id") |
| | | @Expose |
| | | private Long id; |
| | | |
| | | @Column(name="si_uid") |
| | | @Expose |
| | | private Long uid; |
| | | |
| | | @Column(name="si_type") |
| | | @Expose |
| | | private Integer type; |
| | | |
| | | @Column(name="si_url") |
| | | @Expose |
| | | private String url; |
| | | |
| | | @Column(name="si_createtime") |
| | | @Expose |
| | | 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 Long getUid() { |
| | | return uid; |
| | | } |
| | | |
| | | public void setUid(Long uid) { |
| | | this.uid = uid; |
| | | } |
| | | |
| | | public Integer getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(Integer type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | | } |