admin
2021-04-22 745320cbb4edfa4fbc8f0f95483a4ee7893d5769
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
38
39
40
41
42
43
44
45
package com.yeshi.buwan.domain;
 
/**
 * 图片信息
 * 
 * @author Administrator
 * 
 */
public class ImageInfo {
    private String id;
    private String url;
    private String createtime;
 
    public ImageInfo() {
    }
 
    public ImageInfo(String id) {
        this.id = id;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
}