lisy
2023-08-04 b03b30f475f3f4da7f0136fc562ac71d6821ebf4
cloud-server-management/src/main/resources/mapper/TStoreMapper.xml
@@ -42,7 +42,7 @@
        ) as aa order by aa.code
    </select>
    <select id="queryListOfpage" resultType="java.util.Map">
        SELECT id, cityManagerId, province, city, `name`
        SELECT `id`, `cityManagerId`, `province`, `city`, `name`
        from t_store
        where 1=1
        <if test="provinceCode != null">
@@ -54,7 +54,7 @@
        <if test="cityManagerId != null">
            and cityManagerId = #{cityManagerId}
        </if>
        <if test="storeName != null and storeName != ' '">
        <if test="storeName != null and storeName != ''">
            and `name` like CONCAT('%',#{storeName},'%')
        </if>
    </select>