| | |
| | | <if test="carBrand !=null and carBrand != ''"> |
| | | and t.car_brand= #{carBrand} |
| | | </if> |
| | | <if test="parkingType !=null and parkingType != ''"> |
| | | and t.parking_type= #{parkingType} |
| | | </if> |
| | | <if test="roadName !=null and roadName != ''"> |
| | | and t.road_name= #{roadName} |
| | | </if> |
| | | <if test="floorNum !=null and floorNum != ''"> |
| | | and t.floor_num= #{floorNum} |
| | | </if> |
| | | <if test="unitNum !=null and unitNum != ''"> |
| | | and t.unit_num= #{unitNum} |
| | | </if> |
| | | <if test="unitPricePerMonth !=null and unitPricePerMonth != ''"> |
| | | and t.unit_price_per_month= #{unitPricePerMonth} |
| | | </if> |
| | | <if test="roomNum !=null and roomNum != ''"> |
| | | and t.room_num= #{roomNum} |
| | | </if> |
| | | <if test="carType !=null and carType != ''"> |
| | | and t.car_type= #{carType} |
| | | </if> |
| | |
| | | <if test="carNumLike !=null and carNumLike != ''"> |
| | | and t.car_num like concat('%',#{carNumLike},'%') |
| | | </if> |
| | | <if test="carNumLikeRight_ !=null and carNumLikeRight_ != ''"> |
| | | and t.car_num like concat(#{carNumLikeRight_},'%') |
| | | </if> |
| | | <if test="memberCarNum !=null and memberCarNum != ''"> |
| | | and moc.car_num= #{memberCarNum} |
| | | </if> |