| | |
| | | |
| | | @ApiModelProperty(hidden = true) |
| | | private List<String> idList; |
| | | |
| | | @ApiModelProperty(value = "收货地址详细地址(拼接省市区地址)") |
| | | private String address; |
| | | } |
| | |
| | | <if test="condition.customerAddress != null and condition.customerAddress != ''"> |
| | | AND q.customer_address LIKE concat('%', #{condition.customerAddress},'%') |
| | | </if> |
| | | <if test="condition.address != null and condition.address != ''"> |
| | | AND CONCAT(q.customer_province, q.customer_city, q.customer_region, q.customer_address) LIKE concat('%', |
| | | #{condition.address},'%') |
| | | </if> |
| | | <if test="condition.customer != null and condition.customer != ''"> |
| | | AND (q.customer LIKE concat('%', #{condition.customer},'%') |
| | | or q.customer_tel LIKE concat('%', #{condition.customer},'%') |