| | |
| | | blade_dept bd on ba.create_dept::text = bd.id::text |
| | | where |
| | | ba.is_deleted = 0 |
| | | <if test="attach.originalName!=null and attach.originalName!=''"> |
| | | and ba.original_name like concat('%',#{attach.originalName},'%') |
| | | <if test="attach.nickName!=null and attach.nickName!=''"> |
| | | and ba.nick_name like concat('%',#{attach.nickName},'%') |
| | | </if> |
| | | <if test="attach.resultType!=null"> |
| | | /* 修改点2:如果 resultType 是字符串传入,也需加权转 */ |
| | |
| | | * 附件原名 |
| | | */ |
| | | @ApiModelProperty(value = "附件原名") |
| | | private String originalName; |
| | | private String nickName; |
| | | |
| | | |
| | | @ApiModelProperty(value = "部门集合",hidden = true) |