yujian
2020-06-29 f94a5a1d3fe9bde0e599d41f2d97caea1b08a88d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yeshi.fanli.dto.suning;
 
public class SuningGoodsImg {
    private Integer locationId;// 位置ID
    private String picUrl;// 图片链接
 
    public Integer getLocationId() {
        return locationId;
    }
 
    public void setLocationId(Integer locationId) {
        this.locationId = locationId;
    }
 
    public String getPicUrl() {
        return picUrl;
    }
 
    public void setPicUrl(String picUrl) {
        this.picUrl = picUrl;
    }
}