FolderItem.java 1.33 KB
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 + '\'' +
                '}';
    }
}