19 lines
779 B
XML
19 lines
779 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.bwie.student.mapper.NewMapper">
|
|
|
|
|
|
<select id="findAll" resultType="com.bwie.common.domain.response.NewResponse">
|
|
SELECT t_new.*,t_type.type_name,t_user.user_name FROM t_new
|
|
LEFT JOIN t_type on t_new.type_id=t_type.id
|
|
LEFT JOIN t_user on t_new.create_id=t_user.user_id
|
|
</select>
|
|
<select id="list" resultType="com.bwie.common.domain.response.NewResponse">
|
|
SELECT t_new.*,t_type.type_name,t_user.user_name FROM t_new
|
|
LEFT JOIN t_type on t_new.type_id=t_type.id
|
|
LEFT JOIN t_user on t_new.create_id=t_user.user_id
|
|
</select>
|
|
</mapper>
|