admin
2019-08-02 90b211c63f9d596aa90b508f76eb916a30b68731
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
package com.yeshi.fanli.dto.jd;
 
import java.io.Serializable;
 
public class JDShopInfo implements Serializable{
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    
    private Integer shopId;
    private String shopName;
    public Integer getShopId() {
        return shopId;
    }
    public void setShopId(Integer shopId) {
        this.shopId = shopId;
    }
    public String getShopName() {
        return shopName;
    }
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
    
 
}