|
@@ -191,10 +191,10 @@ public interface YpBaseYfMapper {
|
|
|
" yp_zd_dict b WITH(NOLOCK)" +
|
|
|
" WHERE ( a.serial = b.serial ) and" +
|
|
|
" a.charge_code = b.code and" +
|
|
|
- " (isnull(b.py_code,'') like '${searchText}%' or" +
|
|
|
- " isnull(b.d_code,'') like '${searchText}%' or" +
|
|
|
- " a.charge_code like '${searchText}%' or" +
|
|
|
- " b.name like '${searchText}%') and" +
|
|
|
+ " (isnull(b.py_code,'') like '%${searchText}%' or" +
|
|
|
+ " isnull(b.d_code,'') like '%${searchText}%' or" +
|
|
|
+ " a.charge_code like '%${searchText}%' or" +
|
|
|
+ " b.name like '%${searchText}%') and" +
|
|
|
" a.group_no = #{groupNo} and " +
|
|
|
" isnull(b.del_flag,0) != 1")
|
|
|
List<YpZdDictVo> selectYpBaseYfLike(@Param("searchText") String searchText, @Param("groupNo") String groupNo);
|