You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
<?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.dao.ZhiyuanzheDao">
|
|
|
|
<!-- 可根据自己的需求,是否要使用 -->
|
|
<resultMap type="com.entity.ZhiyuanzheEntity" id="zhiyuanzheMap">
|
|
<result property="xuehao" column="xuehao"/>
|
|
<result property="mima" column="mima"/>
|
|
<result property="xingming" column="xingming"/>
|
|
<result property="xingbie" column="xingbie"/>
|
|
<result property="touxiang" column="touxiang"/>
|
|
<result property="nianling" column="nianling"/>
|
|
<result property="banji" column="banji"/>
|
|
<result property="youxiang" column="youxiang"/>
|
|
<result property="shouji" column="shouji"/>
|
|
<result property="sfsh" column="sfsh"/>
|
|
<result property="shhf" column="shhf"/>
|
|
</resultMap>
|
|
|
|
<select id="selectListVO"
|
|
resultType="com.entity.vo.ZhiyuanzheVO" >
|
|
SELECT * FROM zhiyuanzhe zhiyuanzhe
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectVO"
|
|
resultType="com.entity.vo.ZhiyuanzheVO" >
|
|
SELECT zhiyuanzhe.* FROM zhiyuanzhe zhiyuanzhe
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectListView"
|
|
resultType="com.entity.view.ZhiyuanzheView" >
|
|
|
|
SELECT zhiyuanzhe.* FROM zhiyuanzhe zhiyuanzhe
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectView"
|
|
resultType="com.entity.view.ZhiyuanzheView" >
|
|
SELECT * FROM zhiyuanzhe zhiyuanzhe <where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
|
|
</mapper>
|