1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.kmall.admin.entity;
- import java.io.Serializable;
- /**
- *
- *
- * @author Scott
- * @email
- * @date 2017-08-13 10:41:09
- */
- public class RelatedGoodsEntity implements Serializable {
- private static final long serialVersionUID = 1L;
-
- //主键
- private Integer id;
- //商品Id
- private Integer goodsId;
- //关联商品id
- private Integer relatedGoodsId;
- /**
- * 设置:主键
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * 获取:主键
- */
- public Integer getId() {
- return id;
- }
- /**
- * 设置:商品Id
- */
- public void setGoodsId(Integer goodsId) {
- this.goodsId = goodsId;
- }
- /**
- * 获取:商品Id
- */
- public Integer getGoodsId() {
- return goodsId;
- }
- /**
- * 设置:关联商品id
- */
- public void setRelatedGoodsId(Integer relatedGoodsId) {
- this.relatedGoodsId = relatedGoodsId;
- }
- /**
- * 获取:关联商品id
- */
- public Integer getRelatedGoodsId() {
- return relatedGoodsId;
- }
- }
|