实现立案申请上传附件功能

This commit is contained in:
qitz
2023-09-26 14:52:17 +08:00
parent d52ecca5dc
commit e97418f979
5 changed files with 115 additions and 13 deletions
@@ -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;
}