| | |
| | | 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; |
| | | |
| | | @Setter |
| | | @Getter |
| | |
| | | /** |
| | | * 任务名称 |
| | | */ |
| | | @ApiModelProperty(value = "任务名称") |
| | | private String name; |
| | | |
| | | /** |
| | | * 任务名称 |
| | | */ |
| | | @ApiModelProperty(value = "任务名称") |
| | | private String moduleName; |
| | | // /** |
| | | // * 流程实例状态( 0,审批中 1,审批通过 2,审批拒绝 3) |
| | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | @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; |
| | | |
| | | |
| | | } |