23 lines
585 B
XML
23 lines
585 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.das.modules.page.mapper.SysHomeParamSetMapper">
|
|
|
|
|
|
|
|
<select id="getList" resultType="com.das.modules.page.domian.vo.SysHomeParamSetVo">
|
|
SELECT
|
|
*
|
|
FROM
|
|
sys_home_param_set
|
|
<where>
|
|
<if test="info.paramName != null and info.paramName != ''">
|
|
AND param_name = #{info.paramName}
|
|
</if>
|
|
</where>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
</mapper>
|