实现立案申请上传附件功能
This commit is contained in:
@@ -263,6 +263,39 @@ public class CaseApplication extends BaseEntity {
|
||||
|
||||
private List<Integer> caseStatusList;
|
||||
|
||||
private List<Integer> annexTypeList;
|
||||
|
||||
private Integer annexType;
|
||||
|
||||
public Integer getAnnexType() {
|
||||
return annexType;
|
||||
}
|
||||
|
||||
public void setAnnexType(Integer annexType) {
|
||||
this.annexType = annexType;
|
||||
}
|
||||
|
||||
public List<Integer> getAnnexTypeList() {
|
||||
return annexTypeList;
|
||||
}
|
||||
|
||||
public void setAnnexTypeList(List<Integer> annexTypeList) {
|
||||
this.annexTypeList = annexTypeList;
|
||||
}
|
||||
|
||||
/**
|
||||
* 案件附件列表
|
||||
*/
|
||||
private List<CaseAttach> caseAttachList;
|
||||
|
||||
public List<CaseAttach> getCaseAttachList() {
|
||||
return caseAttachList;
|
||||
}
|
||||
|
||||
public void setCaseAttachList(List<CaseAttach> caseAttachList) {
|
||||
this.caseAttachList = caseAttachList;
|
||||
}
|
||||
|
||||
public List<Integer> getCaseStatusList() {
|
||||
return caseStatusList;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user