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.
46 lines
1.8 KiB
46 lines
1.8 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.HuanshuiDao">
|
|
|
|
<!-- 可根据自己的需求,是否要使用 -->
|
|
<resultMap type="com.entity.HuanshuiEntity" id="huanshuiMap">
|
|
<result property="bianhao" column="bianhao"/>
|
|
<result property="tudimingcheng" column="tudimingcheng"/>
|
|
<result property="zhiwumingcheng" column="zhiwumingcheng"/>
|
|
<result property="zhiwutupian" column="zhiwutupian"/>
|
|
<result property="zhongzhiriqi" column="zhongzhiriqi"/>
|
|
<result property="huanshuiriqi" column="huanshuiriqi"/>
|
|
<result property="dangqianzhuangtai" column="dangqianzhuangtai"/>
|
|
<result property="xiacihuanshui" column="xiacihuanshui"/>
|
|
<result property="qita" column="qita"/>
|
|
<result property="yonghuming" column="yonghuming"/>
|
|
<result property="shouji" column="shouji"/>
|
|
<result property="userid" column="userid"/>
|
|
</resultMap>
|
|
|
|
<select id="selectListVO"
|
|
resultType="com.entity.vo.HuanshuiVO" >
|
|
SELECT * FROM huanshui huanshui
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectVO"
|
|
resultType="com.entity.vo.HuanshuiVO" >
|
|
SELECT huanshui.* FROM huanshui huanshui
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectListView"
|
|
resultType="com.entity.view.HuanshuiView" >
|
|
|
|
SELECT huanshui.* FROM huanshui huanshui
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectView"
|
|
resultType="com.entity.view.HuanshuiView" >
|
|
SELECT * FROM huanshui huanshui <where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
</mapper> |