18 lines
599 B
XML
18 lines
599 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.cbsd.universaltestsoftwareserver.module.manage.mapper.BoardMapper">
|
|
|
|
|
|
<select id="pageList" resultType="com.cbsd.universaltestsoftwareserver.module.manage.entity.Board">
|
|
select
|
|
a1.*,
|
|
a2.board_type_name
|
|
from board a1 left join
|
|
board_type a2 on a1.board_type_id = a2.board_type_id
|
|
<if test="ew != null">
|
|
${ew.customSqlSegment}
|
|
</if>
|
|
|
|
</select>
|
|
</mapper>
|