| | |
| | | |
| | | @ApiModelProperty(value = "类型", example = "状态:1-进行中 2:已结束") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "流水类型", example = "4-质押产币") |
| | | private Integer state; |
| | | } |
| | |
| | | if (recordInPageDto.getType() != null && recordInPageDto.getType() != 0) { |
| | | dappFundFlowEntity.setStatus(recordInPageDto.getType()); |
| | | } |
| | | if (recordInPageDto.getState() != null && recordInPageDto.getState() != 0) { |
| | | dappFundFlowEntity.setType(recordInPageDto.getState()); |
| | | } |
| | | dappFundFlowEntity.setMemberId(member.getId()); |
| | | IPage<DappFundFlowEntity> records = dappFundFlowDao.selectInPages(page, dappFundFlowEntity); |
| | | return records.getRecords(); |
| | |
| | | <if test="record.type != null"> |
| | | and a.type = #{record.type} |
| | | </if> |
| | | <if test="record.type != null"> |
| | | and a.type = #{record.type} |
| | | </if> |
| | | <if test="record.status != null"> |
| | | and a.status = #{record.status} |
| | | </if> |