LawyerCaseBean.java 2.52 KB
Newer Older
xucl committed
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
package com.fadu.app.bean.other;

/**
 * 律师案例
 * 
 * @author fei
 *
 */
public class LawyerCaseBean {
	
	/**
	 * 以下属于导入文书网案例需赋值,(C013接口导入不需要content字段)
	 */
	private String sourceFrom;		//源网址	
	private String sourceId;		//源数据id
	private String title;			//标题	
	private String court;			//法院	
	private String casenum;			//案号	
	private String createDate;		//时间	
	private String judgeDate;		//裁判时间	
	private String caseType;		//案例类别 2级 caseType.xml	
	
	//以下案例只有查询需要值
	private String content;			//内容
	private String id;	
	private int isExist; 			//该案例是否已经存在	

	private String province;		//省份	
	
	//只有一级案例类型了
//	private String caseCatalog;		//案例分类 1级 caseType.xml 
//	private String summaryInfo;//摘要
	
	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getCasenum() {
		return casenum;
	}

	public void setCasenum(String casenum) {
		this.casenum = casenum;
	}

	public String getContent() {
		return content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public String getCaseType() {
		return caseType;
	}

	public void setCaseType(String caseType) {
		this.caseType = caseType;
	}

	public String getSourceFrom() {
		return sourceFrom;
	}

	public void setSourceFrom(String sourceFrom) {
		this.sourceFrom = sourceFrom;
	}

	public String getSourceId() {
		return sourceId;
	}

	public void setSourceId(String sourceId) {
		this.sourceId = sourceId;
	}

	public String getCourt() {
		return court;
	}

	public void setCourt(String court) {
		this.court = court;
	}

	public String getCreateDate() {
		return createDate;
	}

	public void setCreateDate(String createDate) {
		this.createDate = createDate;
	}

	public int getIsExist() {
		return isExist;
	}

	public void setIsExist(int isExist) {
		this.isExist = isExist;
	}

	public String getJudgeDate() {
		return judgeDate;
	}

	public void setJudgeDate(String judgeDate) {
		this.judgeDate = judgeDate;
	}

	@Override
	public String toString() {
		return "LawyerCaseBean [title=" + title + ", court=" + court + ", casenum=" + casenum + ", judgeDate=" + judgeDate + ", caseType=" + caseType + ", id=" + id + "]";
	}

	public String getProvince() {
		return province;
	}

	public void setProvince(String province) {
		this.province = province;
	}
}