admin
2020-07-16 b5e008514ffa376154fee55423779a4f21c9f1b7
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
package com.viewpagerindicator;
 
import java.io.Serializable;
 
public class ImagePath implements Serializable {
 
    String imgUrl;
 
    Integer imgId;
 
    public String getImgUrl() {
        return imgUrl;
    }
 
    public void setImgUrl(String imgUrl) {
        this.imgUrl = imgUrl;
    }
 
    public Integer getImgId() {
        return imgId;
    }
 
    public void setImgId(Integer imgId) {
        this.imgId = imgId;
    }
}