diff --git a/op-modules/op-technology/src/main/resources/mapper/technology/ProProcessMapper.xml b/op-modules/op-technology/src/main/resources/mapper/technology/ProProcessMapper.xml index 5faa1055..a9d1f56f 100644 --- a/op-modules/op-technology/src/main/resources/mapper/technology/ProProcessMapper.xml +++ b/op-modules/op-technology/src/main/resources/mapper/technology/ProProcessMapper.xml @@ -68,7 +68,7 @@ - + @@ -305,17 +305,16 @@ - and supplier_code = #{supplierCode} - and zh_desc = #{zhDesc} + and supplier_code like concat('%', #{supplierCode}, '%') + and zh_desc like concat('%', #{zhDesc}, '%') and en_desc = #{enDesc} and supplier_type = #{supplierType} and account_number = #{accountNumber} @@ -52,7 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" and area = #{area} and address = #{address} and postcode = #{postcode} - and contact = #{contact} + and contact like concat('%', #{contact}, '%') and contact_phone = #{contactPhone} and contact_position = #{contactPosition} and contact_email = #{contactEmail} @@ -170,4 +170,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{supplierId} + + + + + \ No newline at end of file