xuhy
昨天 4d86269a103b9530ff3bd46836e0e89a3e43e42b
ruoyi-system/src/main/resources/mapper/system/TSysEducationalInfoMapper.xml
@@ -44,5 +44,24 @@
        </where>
        ORDER BY create_time DESC
    </select>
    <select id="pageListApp" resultType="com.ruoyi.system.model.TSysEducationalInfo">
        select
        <include refid="Base_Column_List" />
            from t_sys_educational_info
        <where>
            <if test="query.infoTitle != null and query.infoTitle != ''">
                and info_title like concat('%',#{query.infoTitle},'%')
            </if>
            <if test="query.showType != null">
                and show_type = #{query.showType}
            </if>
            <if test="query.status != null">
                and status = #{query.status}
            </if>
            and show_type in (1,3)
            AND disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()}
        </where>
        ORDER BY create_time DESC
    </select>
</mapper>