86 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| package com.novelbook.android.bean;
 | |
| 
 | |
| import com.novelbook.android.db.Novel;
 | |
| 
 | |
| import java.util.List;
 | |
| 
 | |
| public class NovelBlock{
 | |
|     private int cid;
 | |
|    private String fn;
 | |
|    private String title;
 | |
|    private int oneself;
 | |
|    //private int displayModel;
 | |
|     private String name;
 | |
|    private String icon;
 | |
|    private List<String> pictures;
 | |
|    private List<Novel> ns;
 | |
| 
 | |
|     public int getCid() {
 | |
|         return cid;
 | |
|     }
 | |
| 
 | |
|     public void setCid(int cid) {
 | |
|         this.cid = cid;
 | |
|     }
 | |
| 
 | |
|     public String getFn() {
 | |
|         return fn;
 | |
|     }
 | |
| 
 | |
|     public void setFn(String fn) {
 | |
|         this.fn = fn;
 | |
|     }
 | |
| 
 | |
|     public String getTitle() {
 | |
|         return title;
 | |
|     }
 | |
| 
 | |
|     public void setTitle(String title) {
 | |
|         this.title = title;
 | |
|     }
 | |
| 
 | |
|     public int getOneself() {
 | |
|         return oneself;
 | |
|     }
 | |
| 
 | |
|     public void setOneself(int oneself) {
 | |
|         this.oneself = oneself;
 | |
|     }
 | |
| 
 | |
|     public String getName() {
 | |
|         return name;
 | |
|     }
 | |
| 
 | |
|     public void setName(String name) {
 | |
|         this.name = name;
 | |
|     }
 | |
| 
 | |
|     public String getIcon() {
 | |
|         return icon;
 | |
|     }
 | |
| 
 | |
|     public void setIcon(String icon) {
 | |
|         this.icon = icon;
 | |
|     }
 | |
| 
 | |
|     public List<String> getPictures() {
 | |
|         return pictures;
 | |
|     }
 | |
| 
 | |
|     public void setPictures(List<String> pictures) {
 | |
|         this.pictures = pictures;
 | |
|     }
 | |
| 
 | |
|     public List<Novel> getNs() {
 | |
|         return ns;
 | |
|     }
 | |
| 
 | |
|     public void setNs(List<Novel> ns) {
 | |
|         this.ns = ns;
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 |