admin
2020-06-20 0ab8a2ea521a838124f517daf4e61dee971a6d4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
    }
}