修改申请
This commit is contained in:
@@ -73,6 +73,16 @@ public class CaseApplication extends BaseEntity {
|
||||
|
||||
/** 案件状态 */
|
||||
private Integer caseStatus;
|
||||
/** 案件申请表ID */
|
||||
private Long caseAppliId;
|
||||
|
||||
public Long getCaseAppliId() {
|
||||
return caseAppliId;
|
||||
}
|
||||
|
||||
public void setCaseAppliId(Long caseAppliId) {
|
||||
this.caseAppliId = caseAppliId;
|
||||
}
|
||||
|
||||
public Integer getCaseStatus() {
|
||||
return caseStatus;
|
||||
@@ -402,6 +412,30 @@ public class CaseApplication extends BaseEntity {
|
||||
* 财务状态
|
||||
*/
|
||||
private Integer financeStatus;
|
||||
/**
|
||||
* 是否是被申请人,仲裁员,部门长,财务,代理人,0-否,1-是
|
||||
*/
|
||||
private Integer isOtherRole;
|
||||
/**
|
||||
* 案件日志id
|
||||
*/
|
||||
private Long caseLogId;
|
||||
|
||||
public Long getCaseLogId() {
|
||||
return caseLogId;
|
||||
}
|
||||
|
||||
public void setCaseLogId(Long caseLogId) {
|
||||
this.caseLogId = caseLogId;
|
||||
}
|
||||
|
||||
public Integer getIsOtherRole() {
|
||||
return isOtherRole;
|
||||
}
|
||||
|
||||
public void setIsOtherRole(Integer isOtherRole) {
|
||||
this.isOtherRole = isOtherRole;
|
||||
}
|
||||
|
||||
public List<Long> getAgentDeptIds() {
|
||||
return agentDeptIds;
|
||||
@@ -775,6 +809,30 @@ public class CaseApplication extends BaseEntity {
|
||||
* 申请机构id
|
||||
*/
|
||||
private String applicationOrganId;
|
||||
/**
|
||||
* 版本号
|
||||
*/
|
||||
private Integer version;
|
||||
/**
|
||||
* 修改案件的提交状态,0-未提交,1-已提交,2-同意,3-拒绝,4-撤销
|
||||
*/
|
||||
private Integer updateSubmitStatus;
|
||||
|
||||
public Integer getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
public void setVersion(Integer version) {
|
||||
this.version = version;
|
||||
}
|
||||
|
||||
public Integer getUpdateSubmitStatus() {
|
||||
return updateSubmitStatus;
|
||||
}
|
||||
|
||||
public void setUpdateSubmitStatus(Integer updateSubmitStatus) {
|
||||
this.updateSubmitStatus = updateSubmitStatus;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
|
||||
Reference in New Issue
Block a user