3 changed files with 143 additions and 0 deletions
@ -0,0 +1,107 @@ |
|||||
|
package cn.chjyj.szwh.vo; |
||||
|
|
||||
|
/** |
||||
|
* 商品列表映射 |
||||
|
* goods+goods_detail |
||||
|
*/ |
||||
|
public class GoodsListVo { |
||||
|
private Integer id; |
||||
|
private String createtime; |
||||
|
private String goods_islicode; |
||||
|
private String goods_name; |
||||
|
private String username; |
||||
|
private String user_islicode; //
|
||||
|
private Integer goods_type;//商品类型;1:文化资源数据;2:文化数字内容 |goods_detail
|
||||
|
private Integer goods_status;//商品状态;1:上架中;2:下架中;3:已转让;4:已失效;5:冻结中;6:下架中 |goods
|
||||
|
private Integer goods_detail_id; //商品明细ID |goods
|
||||
|
private Integer is_recommend; //是否推荐;0:否;1:是 \goods
|
||||
|
private Integer entrust_status; //商品委托类型;1:转让;2:许可 \goods_detail
|
||||
|
|
||||
|
public Integer getId() { |
||||
|
return id; |
||||
|
} |
||||
|
|
||||
|
public void setId(Integer id) { |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public String getCreatetime() { |
||||
|
return createtime; |
||||
|
} |
||||
|
|
||||
|
public void setCreatetime(String createtime) { |
||||
|
this.createtime = createtime; |
||||
|
} |
||||
|
|
||||
|
public String getGoods_islicode() { |
||||
|
return goods_islicode; |
||||
|
} |
||||
|
|
||||
|
public void setGoods_islicode(String goods_islicode) { |
||||
|
this.goods_islicode = goods_islicode; |
||||
|
} |
||||
|
|
||||
|
public String getGoods_name() { |
||||
|
return goods_name; |
||||
|
} |
||||
|
|
||||
|
public void setGoods_name(String goods_name) { |
||||
|
this.goods_name = goods_name; |
||||
|
} |
||||
|
|
||||
|
public String getUsername() { |
||||
|
return username; |
||||
|
} |
||||
|
|
||||
|
public void setUsername(String username) { |
||||
|
this.username = username; |
||||
|
} |
||||
|
|
||||
|
public String getUser_islicode() { |
||||
|
return user_islicode; |
||||
|
} |
||||
|
|
||||
|
public void setUser_islicode(String user_islicode) { |
||||
|
this.user_islicode = user_islicode; |
||||
|
} |
||||
|
|
||||
|
public Integer getGoods_type() { |
||||
|
return goods_type; |
||||
|
} |
||||
|
|
||||
|
public void setGoods_type(Integer goods_type) { |
||||
|
this.goods_type = goods_type; |
||||
|
} |
||||
|
|
||||
|
public Integer getGoods_status() { |
||||
|
return goods_status; |
||||
|
} |
||||
|
|
||||
|
public void setGoods_status(Integer goods_status) { |
||||
|
this.goods_status = goods_status; |
||||
|
} |
||||
|
|
||||
|
public Integer getGoods_detail_id() { |
||||
|
return goods_detail_id; |
||||
|
} |
||||
|
|
||||
|
public void setGoods_detail_id(Integer goods_detail_id) { |
||||
|
this.goods_detail_id = goods_detail_id; |
||||
|
} |
||||
|
|
||||
|
public Integer getIs_recommend() { |
||||
|
return is_recommend; |
||||
|
} |
||||
|
|
||||
|
public void setIs_recommend(Integer is_recommend) { |
||||
|
this.is_recommend = is_recommend; |
||||
|
} |
||||
|
|
||||
|
public Integer getEntrust_status() { |
||||
|
return entrust_status; |
||||
|
} |
||||
|
|
||||
|
public void setEntrust_status(Integer entrust_status) { |
||||
|
this.entrust_status = entrust_status; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue