1
dd
2026-06-03 c30c7f1156961bf0b55f598c9693d4a3e6c1f0c1
src/main/resources/mapper/UserStockSubscribeMapper.xml
@@ -201,9 +201,8 @@
    </update>
    <select id="load" resultMap="BaseResultMap">
        SELECT <include refid="Base_Column_List" />
        FROM user_stock_subscribe
    <select id="load" resultType="com.nq.pojo.UserStockSubscribe" parameterType="int">
        SELECT * FROM user_stock_subscribe
        WHERE id = #{id}
    </select>
@@ -214,6 +213,9 @@
        <if test="keyword != null and keyword != ''">
            and (user_id = #{keyword} or real_name like CONCAT('%',#{keyword},'%') or phone like CONCAT('%',#{keyword},'%'))
        </if>
        <if test="agentId != null and agentId != ''">
            and agent_id = #{agentId}
        </if>
        order by id desc
    </select>