feat:askbot 门店获取方式变更

This commit is contained in:
苏竹红
2025-05-12 10:38:19 +08:00
parent 66202bfca8
commit b15c9eed79
7 changed files with 45 additions and 11 deletions

View File

@@ -79,4 +79,14 @@
where store_num = #{storeNum}
</select>
<select id="listByMobile" resultMap="BaseResultMap">
select *
from store_${enterpriseId}
<where>
<if test="mobile!=null and mobile !=''">
and `extend_field` like concat('%', #{mobile}, '%')
</if>
</where>
</select>
</mapper>