admin
2021-06-08 cca287441f277a3049cc280ae0d1e622d99d22ef
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;
    }
}