zj
2026-01-06 9b233cbcc955c23d1be041deb2a0d0c575df7cbc
src/main/resources/mapper/EchoMapper.xml
@@ -10,27 +10,4 @@
        <result column="return_time" property="returnTime"/>
        <result column="title" property="title"/>
    </resultMap>
    <sql id="Base_Column_List">
        id
        ,
                return_of_rate,
                edesc,
                is_open,
                return_time,
                title
    </sql>
    <select id="selectQueryAll" resultMap="BaseResultMap">
        select
            <include refid="Base_Column_List"/>
            from echo
    </select>
    <select id="selectById" resultMap="BaseResultMap" parameterType="java.lang.Integer">
        select  <include refid="Base_Column_List"/>
            from echo where id  = #{id}
    </select>
</mapper>