package com.fadu.app.bean.e; import com.fadu.app.bean.BaseRequest; public class E573Request extends BaseRequest { // 案件类型 private String caseType; // 是否展示合同约定起诉地点 // 0-不展示 // 1-展示 private String demonstration; // 是否选择合同约定起诉地点 // 0-不选择 // 1-选择 private String choose; public String getCaseType() { return caseType; } public void setCaseType(String caseType) { this.caseType = caseType; } public String getDemonstration() { return demonstration; } public void setDemonstration(String demonstration) { this.demonstration = demonstration; } public String getChoose() { return choose; } public void setChoose(String choose) { this.choose = choose; } }