package com.ks.tool.bkz.vo.tb;
|
|
public class ZheTaoKeConvertResult {
|
private String taoBaoUrl;
|
private String tkl;
|
private Long goodsId;
|
|
public ZheTaoKeConvertResult(String taoBaoUrl, String tkl, Long goodsId) {
|
this.taoBaoUrl = taoBaoUrl;
|
this.tkl = tkl;
|
this.goodsId = goodsId;
|
}
|
|
public String getTaoBaoUrl() {
|
return taoBaoUrl;
|
}
|
|
public void setTaoBaoUrl(String taoBaoUrl) {
|
this.taoBaoUrl = taoBaoUrl;
|
}
|
|
public String getTkl() {
|
return tkl;
|
}
|
|
public void setTkl(String tkl) {
|
this.tkl = tkl;
|
}
|
|
public Long getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(Long goodsId) {
|
this.goodsId = goodsId;
|
}
|
}
|