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.
house/target/classes/mapper/WeixiuchuliDao.xml

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.WeixiuchuliDao">
<!-- 可根据自己的需求,是否要使用 -->
<resultMap type="com.entity.WeixiuchuliEntity" id="weixiuchuliMap">
<result property="fangwumingcheng" column="fangwumingcheng"/>
<result property="fangwuleixing" column="fangwuleixing"/>
<result property="baoxiumingcheng" column="baoxiumingcheng"/>
<result property="leixing" column="leixing"/>
<result property="baoxiuriqi" column="baoxiuriqi"/>
<result property="weixiufankui" column="weixiufankui"/>
<result property="weixiujindu" column="weixiujindu"/>
<result property="gengxinriqi" column="gengxinriqi"/>
<result property="fangzhuzhanghao" column="fangzhuzhanghao"/>
<result property="fangzhuxingming" column="fangzhuxingming"/>
<result property="yonghuming" column="yonghuming"/>
<result property="lianxidianhua" column="lianxidianhua"/>
</resultMap>
<select id="selectListVO"
resultType="com.entity.vo.WeixiuchuliVO" >
SELECT * FROM weixiuchuli weixiuchuli
<where> 1=1 ${ew.sqlSegment}</where>
</select>
<select id="selectVO"
resultType="com.entity.vo.WeixiuchuliVO" >
SELECT weixiuchuli.* FROM weixiuchuli weixiuchuli
<where> 1=1 ${ew.sqlSegment}</where>
</select>
<select id="selectListView"
resultType="com.entity.view.WeixiuchuliView" >
SELECT weixiuchuli.* FROM weixiuchuli weixiuchuli
<where> 1=1 ${ew.sqlSegment}</where>
</select>
<select id="selectView"
resultType="com.entity.view.WeixiuchuliView" >
SELECT * FROM weixiuchuli weixiuchuli <where> 1=1 ${ew.sqlSegment}</where>
</select>
</mapper>