FolderItem.java
1.33 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.gimi.common.cinema.model;
import java.io.Serializable;
/**
* Created by pc on 2014/12/9
*/
//@Table(name = "type_table")
public class FolderItem implements Serializable {
// @Property(column = "_id")
private int id;
// @Property(column = "folder_name")
private String folderName;
// @Property(column = "poster_path")
private String posterPath;
// @Property(column = "folder_path")
private String folderPath;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getFolderName() {
return folderName;
}
public void setFolderName(String folderName) {
this.folderName = folderName;
}
public String getPosterPath() {
return posterPath;
}
public void setPosterPath(String posterPath) {
this.posterPath = posterPath;
}
public String getFolderPath() {
return folderPath;
}
public void setFolderPath(String folderPath) {
this.folderPath = folderPath;
}
@Override
public String toString() {
return "FolderItem{" +
"id=" + id +
", folderName='" + folderName + '\'' +
", posterPath='" + posterPath + '\'' +
", folderPath='" + folderPath + '\'' +
'}';
}
}