package com.ruoyi.system.bo;
|
|
import com.ruoyi.common.core.domain.BasePage;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
import java.util.List;
|
|
public class ProcessTaskListBO extends BasePage {
|
/**
|
* 任务名称
|
*/
|
@ApiModelProperty(value = "任务名称")
|
private String name;
|
|
/**
|
* 任务名称
|
*/
|
@ApiModelProperty(value = "任务名称")
|
private String moduleName;
|
// /**
|
// * 流程实例状态( 0,审批中 1,审批通过 2,审批拒绝 3)
|
// */
|
// private Integer instanceState;
|
/**
|
* 创建人
|
*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
|
@ApiModelProperty(value = "乙方名称")
|
private String partyTwoName;
|
@ApiModelProperty(value = "合同编号")
|
private String contractNumber;
|
@ApiModelProperty(value = "合同名称")
|
private String contractName;
|
@ApiModelProperty(value = "合同状态")
|
private String status;
|
@ApiModelProperty(value = "前端忽略")
|
private List<String> instanceIds;
|
|
@ApiModelProperty(value = "时间筛选 1=1天 2=7天 3=30天")
|
private Integer timeType;
|
|
@ApiModelProperty(value = "排序 1=最早到达 2=最新到达")
|
private Integer sortBy=2;
|
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getModuleName() {
|
return moduleName;
|
}
|
|
public void setModuleName(String moduleName) {
|
this.moduleName = moduleName;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public String getPartyTwoName() {
|
return partyTwoName;
|
}
|
|
public void setPartyTwoName(String partyTwoName) {
|
this.partyTwoName = partyTwoName;
|
}
|
|
public String getContractNumber() {
|
return contractNumber;
|
}
|
|
public void setContractNumber(String contractNumber) {
|
this.contractNumber = contractNumber;
|
}
|
|
public String getContractName() {
|
return contractName;
|
}
|
|
public void setContractName(String contractName) {
|
this.contractName = contractName;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public List<String> getInstanceIds() {
|
return instanceIds;
|
}
|
|
public void setInstanceIds(List<String> instanceIds) {
|
this.instanceIds = instanceIds;
|
}
|
|
public Integer getTimeType() {
|
return timeType;
|
}
|
|
public void setTimeType(Integer timeType) {
|
this.timeType = timeType;
|
}
|
|
public Integer getSortBy() {
|
return sortBy;
|
}
|
|
public void setSortBy(Integer sortBy) {
|
this.sortBy = sortBy;
|
}
|
}
|