| | |
| | | |
| | | @ApiModelProperty(value = "库位") |
| | | private String warehouseLocationCode; |
| | | |
| | | @ApiModelProperty(value = "用户账号") |
| | | private String createName; |
| | | } |
| | |
| | | <if test="condition.warehouseLocationCode != null and condition.warehouseLocationCode != ''"> |
| | | AND q.warehouse_location_code LIKE concat('%', #{condition.warehouseLocationCode},'%') |
| | | </if> |
| | | <if test="condition.createName != null and condition.createName != ''"> |
| | | AND u.nick_name LIKE concat('%', #{condition.createName},'%') |
| | | </if> |
| | | |
| | | ORDER BY q.create_time desc, q.payment_time desc |
| | | </select> |