| | |
| | | package com.yeshi.fanli.entity.push;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.yeshi.fanli.goods.CommonGoods;
|
| | |
|
| | | @Table("yeshi_ec_push_goods_group")
|
| | | public class PushGoodsGroup {
|
| | |
|
| | | @Column(name = "gro_id")
|
| | | private Long id;
|
| | |
|
| | | // 推送id
|
| | | @Column(name = "gro_push_id")
|
| | | private Long pushId;
|
| | |
|
| | | // 商品
|
| | | @Column(name = "gro_goods_id")
|
| | | private CommonGoods commonGoods;
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public Long getPushId() {
|
| | | return pushId;
|
| | | }
|
| | |
|
| | | public void setPushId(Long pushId) {
|
| | | this.pushId = pushId;
|
| | | }
|
| | |
|
| | | public CommonGoods getCommonGoods() {
|
| | | return commonGoods;
|
| | | }
|
| | |
|
| | | public void setCommonGoods(CommonGoods commonGoods) {
|
| | | this.commonGoods = commonGoods;
|
| | | }
|
| | | |
| | | }
|
| | | package com.yeshi.fanli.entity.push; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | import com.yeshi.fanli.entity.goods.CommonGoods; |
| | | |
| | | @Table("yeshi_ec_push_goods_group") |
| | | public class PushGoodsGroup { |
| | | |
| | | @Column(name = "gro_id") |
| | | private Long id; |
| | | |
| | | // 推送id |
| | | @Column(name = "gro_push_id") |
| | | private Long pushId; |
| | | |
| | | // 商品 |
| | | @Column(name = "gro_goods_id") |
| | | private CommonGoods commonGoods; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getPushId() { |
| | | return pushId; |
| | | } |
| | | |
| | | public void setPushId(Long pushId) { |
| | | this.pushId = pushId; |
| | | } |
| | | |
| | | public CommonGoods getCommonGoods() { |
| | | return commonGoods; |
| | | } |
| | | |
| | | public void setCommonGoods(CommonGoods commonGoods) { |
| | | this.commonGoods = commonGoods; |
| | | } |
| | | |
| | | } |