liujie
2023-10-07 44311853fa68f04db11d341bd374a4ac9b5ea567
cloud-server-management/src/main/resources/mapper/TStoreMapper.xml
@@ -56,7 +56,7 @@
        ) as aa order by aa.code
    </select>
    <select id="queryListOfpage" resultType="java.util.Map">
        SELECT `id`, `cityManagerId`, `province`, `city`, `name`
        SELECT `id`, `operatorId`, `province`, `city`, `name`,ids
        from t_store
        where 1=1
        <if test="provinceCode != null">
@@ -65,8 +65,8 @@
        <if test="cityCode != null">
            and cityCode = #{cityCode}
        </if>
        <if test="cityManagerId != null">
            and cityManagerId = #{cityManagerId}
        <if test="operatorId != null">
            and operatorId = #{operatorId}
        </if>
        <if test="storeName != null and storeName != ''">
            and `name` like CONCAT('%',#{storeName},'%')