| | |
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | import javax.persistence.Column;
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | | import javax.persistence.Table;
|
| | | import javax.persistence.Transient;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | @Entity
|
| | | @Table(name = "yeshi_ec_spread_user_img")
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_spread_user_img")
|
| | | @Table("yeshi_ec_spread_user_img")
|
| | | public class SpreadUserImg {
|
| | |
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Column(name = "si_id")
|
| | | @org.yeshi.utils.mybatis.Column(name="si_id")
|
| | | @Column(name="si_id")
|
| | | @Expose
|
| | | private Long id;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="si_uid")
|
| | | @Column(name = "si_uid")
|
| | | @Column(name="si_uid")
|
| | | @Expose
|
| | | private Long uid;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="si_type")
|
| | | @Column(name = "si_type")
|
| | | @Column(name="si_type")
|
| | | @Expose
|
| | | private Integer type;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="si_url")
|
| | | @Expose
|
| | | @Column(name="si_url")
|
| | | @Expose
|
| | | private String url;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="si_createtime")
|
| | | @Expose
|
| | | @Column(name="si_createtime")
|
| | | @Expose
|
| | | private Date createtime;
|
| | |
|
| | | @Transient
|