修改bug

This commit is contained in:
huangzj
2023-03-21 11:02:34 +08:00
parent d4553ffa85
commit a82728c7a8
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ public class LoadTypeUserSearchParam {
private String relationUserName; private String relationUserName;
@ApiModelProperty("是否上传入网报告(0:否 1:是)") @ApiModelProperty("是否上传入网报告(0:否 1:是)")
private Integer iIsFileUpload; private String fileUploadflag;
@ApiModelProperty("是否上传实测报告(0:否 1:是)") @ApiModelProperty("是否上传实测报告(0:否 1:是)")
private Integer aIsFileUpload; private Integer aIsFileUpload;

View File

@@ -17,8 +17,8 @@
<if test="loadTypeUserSearchParam.userName != null and loadTypeUserSearchParam.userName != ''"> <if test="loadTypeUserSearchParam.userName != null and loadTypeUserSearchParam.userName != ''">
and r.user_name like CONCAT('%', #{loadTypeUserSearchParam.userName}, '%') and r.user_name like CONCAT('%', #{loadTypeUserSearchParam.userName}, '%')
</if> </if>
<if test="loadTypeUserSearchParam.aIsFileUpload != null and loadTypeUserSearchParam.aIsFileUpload != ''"> <if test="loadTypeUserSearchParam.fileUploadflag != null and loadTypeUserSearchParam.fileUploadflag != ''">
and r.i_is_file_upload = #{loadTypeUserSearchParam.iIsFileUpload} and r.i_is_file_upload = #{loadTypeUserSearchParam.fileUploadflag}
</if> </if>
</select> </select>