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.
52 lines
2.1 KiB
52 lines
2.1 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.YuyuekanfangDao">
|
|
|
|
<!-- 可根据自己的需求,是否要使用 -->
|
|
<resultMap type="com.entity.YuyuekanfangEntity" id="yuyuekanfangMap">
|
|
<result property="yuyuebianhao" column="yuyuebianhao"/>
|
|
<result property="fangwumingcheng" column="fangwumingcheng"/>
|
|
<result property="fangwuleixing" column="fangwuleixing"/>
|
|
<result property="fangwuzhuangtai" column="fangwuzhuangtai"/>
|
|
<result property="xiaoqu" column="xiaoqu"/>
|
|
<result property="yuezujiage" column="yuezujiage"/>
|
|
<result property="yajin" column="yajin"/>
|
|
<result property="zuyongyueshu" column="zuyongyueshu"/>
|
|
<result property="zuyongjine" column="zuyongjine"/>
|
|
<result property="yuyueshijian" column="yuyueshijian"/>
|
|
<result property="yonghuming" column="yonghuming"/>
|
|
<result property="xingming" column="xingming"/>
|
|
<result property="shenfenzheng" column="shenfenzheng"/>
|
|
<result property="lianxidianhua" column="lianxidianhua"/>
|
|
<result property="fangzhuzhanghao" column="fangzhuzhanghao"/>
|
|
<result property="fangzhuxingming" column="fangzhuxingming"/>
|
|
<result property="sfsh" column="sfsh"/>
|
|
<result property="shhf" column="shhf"/>
|
|
</resultMap>
|
|
|
|
<select id="selectListVO"
|
|
resultType="com.entity.vo.YuyuekanfangVO" >
|
|
SELECT * FROM yuyuekanfang yuyuekanfang
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectVO"
|
|
resultType="com.entity.vo.YuyuekanfangVO" >
|
|
SELECT yuyuekanfang.* FROM yuyuekanfang yuyuekanfang
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectListView"
|
|
resultType="com.entity.view.YuyuekanfangView" >
|
|
|
|
SELECT yuyuekanfang.* FROM yuyuekanfang yuyuekanfang
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectView"
|
|
resultType="com.entity.view.YuyuekanfangView" >
|
|
SELECT * FROM yuyuekanfang yuyuekanfang <where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
</mapper> |