| | |
| | | package com.yeshi.fanli.entity.bus.share;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.Date;
|
| | |
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.UserInfo;
|
| | | import org.springframework.data.annotation.Transient;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | /**
|
| | | * 用户分享商品记录
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_share_goods_usershare")
|
| | | public class UserShareGoodsHistory {
|
| | |
|
| | | public final static int TYPE_TAOBAO = 1;
|
| | | @Column(name = "sgus_id")
|
| | | private Long id;
|
| | | @Column(name = "sgus_uid")
|
| | | private UserInfo user;
|
| | | @Column(name = "sgus_goods_type")
|
| | | private Integer goodsType;
|
| | | @Column(name = "sgus_goods_id")
|
| | | private Long goodsId;
|
| | | @Column(name = "sgus_post_picture")
|
| | | private String postPicture;
|
| | |
|
| | | @Column(name = "sgus_share_img")
|
| | | private String shareImg;
|
| | |
|
| | | @Column(name = "sgu_pictures")
|
| | | private String pictures;
|
| | | @Column(name = "sgu_hongbao")
|
| | | private BigDecimal hongbao;
|
| | | @Column(name = "sgu_link")
|
| | | private String link;
|
| | | @Column(name = "sgu_quanlink")
|
| | | private String quanLink;
|
| | | @Column(name = "sgu_tkcode")
|
| | | private String tkCode;
|
| | | @Column(name = "sgu_createtime")
|
| | | private Date createTime;
|
| | |
|
| | | @Transient
|
| | | private String shareImgMD5;
|
| | |
|
| | | public String getShareImgMD5() {
|
| | | return shareImgMD5;
|
| | | }
|
| | |
|
| | | public void setShareImgMD5(String shareImgMD5) {
|
| | | this.shareImgMD5 = shareImgMD5;
|
| | | }
|
| | |
|
| | | public String getShareImg() {
|
| | | return shareImg;
|
| | | }
|
| | |
|
| | | public void setShareImg(String shareImg) {
|
| | | this.shareImg = shareImg;
|
| | | }
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public UserInfo getUser() {
|
| | | return user;
|
| | | }
|
| | |
|
| | | public void setUser(UserInfo user) {
|
| | | this.user = user;
|
| | | }
|
| | |
|
| | | public Integer getGoodsType() {
|
| | | return goodsType;
|
| | | }
|
| | |
|
| | | public void setGoodsType(Integer goodsType) {
|
| | | this.goodsType = goodsType;
|
| | | }
|
| | |
|
| | | public Long getGoodsId() {
|
| | | return goodsId;
|
| | | }
|
| | |
|
| | | public void setGoodsId(Long goodsId) {
|
| | | this.goodsId = goodsId;
|
| | | }
|
| | |
|
| | | public String getPostPicture() {
|
| | | return postPicture;
|
| | | }
|
| | |
|
| | | public void setPostPicture(String postPicture) {
|
| | | this.postPicture = postPicture;
|
| | | }
|
| | |
|
| | | public String getPictures() {
|
| | | return pictures;
|
| | | }
|
| | |
|
| | | public void setPictures(String pictures) {
|
| | | this.pictures = pictures;
|
| | | }
|
| | |
|
| | | public BigDecimal getHongbao() {
|
| | | return hongbao;
|
| | | }
|
| | |
|
| | | public void setHongbao(BigDecimal hongbao) {
|
| | | this.hongbao = hongbao;
|
| | | }
|
| | |
|
| | | public String getLink() {
|
| | | return link;
|
| | | }
|
| | |
|
| | | public void setLink(String link) {
|
| | | this.link = link;
|
| | | }
|
| | |
|
| | | public String getQuanLink() {
|
| | | return quanLink;
|
| | | }
|
| | |
|
| | | public void setQuanLink(String quanLink) {
|
| | | this.quanLink = quanLink;
|
| | | }
|
| | |
|
| | | public String getTkCode() {
|
| | | return tkCode;
|
| | | }
|
| | |
|
| | | public void setTkCode(String tkCode) {
|
| | | this.tkCode = tkCode;
|
| | | }
|
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.bus.share; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | |
| | | import com.yeshi.fanli.entity.bus.user.UserInfo; |
| | | import org.springframework.data.annotation.Transient; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | /** |
| | | * 用户分享商品记录 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_share_goods_usershare") |
| | | public class UserShareGoodsHistory { |
| | | |
| | | public final static int TYPE_TAOBAO = 1; |
| | | @Column(name = "sgus_id") |
| | | private Long id; |
| | | @Column(name = "sgus_uid") |
| | | private UserInfo user; |
| | | @Column(name = "sgus_goods_type") |
| | | private Integer goodsType; |
| | | @Column(name = "sgus_goods_id") |
| | | private String goodsId; |
| | | @Column(name = "sgus_post_picture") |
| | | private String postPicture; |
| | | |
| | | @Column(name = "sgus_share_img") |
| | | private String shareImg; |
| | | |
| | | @Column(name = "sgu_pictures") |
| | | private String pictures; |
| | | @Column(name = "sgu_hongbao") |
| | | private BigDecimal hongbao; |
| | | @Column(name = "sgu_link") |
| | | private String link; |
| | | @Column(name = "sgu_quanlink") |
| | | private String quanLink; |
| | | @Column(name = "sgu_tkcode") |
| | | private String tkCode; |
| | | @Column(name = "sgu_createtime") |
| | | private Date createTime; |
| | | |
| | | @Transient |
| | | private String shareImgMD5; |
| | | |
| | | public String getShareImgMD5() { |
| | | return shareImgMD5; |
| | | } |
| | | |
| | | public void setShareImgMD5(String shareImgMD5) { |
| | | this.shareImgMD5 = shareImgMD5; |
| | | } |
| | | |
| | | public String getShareImg() { |
| | | return shareImg; |
| | | } |
| | | |
| | | public void setShareImg(String shareImg) { |
| | | this.shareImg = shareImg; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public UserInfo getUser() { |
| | | return user; |
| | | } |
| | | |
| | | public void setUser(UserInfo user) { |
| | | this.user = user; |
| | | } |
| | | |
| | | public Integer getGoodsType() { |
| | | return goodsType; |
| | | } |
| | | |
| | | public void setGoodsType(Integer goodsType) { |
| | | this.goodsType = goodsType; |
| | | } |
| | | |
| | | public String getGoodsId() { |
| | | return goodsId; |
| | | } |
| | | |
| | | public void setGoodsId(String goodsId) { |
| | | this.goodsId = goodsId; |
| | | } |
| | | |
| | | public String getPostPicture() { |
| | | return postPicture; |
| | | } |
| | | |
| | | public void setPostPicture(String postPicture) { |
| | | this.postPicture = postPicture; |
| | | } |
| | | |
| | | public String getPictures() { |
| | | return pictures; |
| | | } |
| | | |
| | | public void setPictures(String pictures) { |
| | | this.pictures = pictures; |
| | | } |
| | | |
| | | public BigDecimal getHongbao() { |
| | | return hongbao; |
| | | } |
| | | |
| | | public void setHongbao(BigDecimal hongbao) { |
| | | this.hongbao = hongbao; |
| | | } |
| | | |
| | | public String getLink() { |
| | | return link; |
| | | } |
| | | |
| | | public void setLink(String link) { |
| | | this.link = link; |
| | | } |
| | | |
| | | public String getQuanLink() { |
| | | return quanLink; |
| | | } |
| | | |
| | | public void setQuanLink(String quanLink) { |
| | | this.quanLink = quanLink; |
| | | } |
| | | |
| | | public String getTkCode() { |
| | | return tkCode; |
| | | } |
| | | |
| | | public void setTkCode(String tkCode) { |
| | | this.tkCode = tkCode; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | } |