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.
39 lines
1.3 KiB
39 lines
1.3 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.StoreupDao">
|
|
|
|
<!-- 可根据自己的需求,是否要使用 -->
|
|
<resultMap type="com.entity.StoreupEntity" id="storeupMap">
|
|
<result property="userid" column="userid"/>
|
|
<result property="refid" column="refid"/>
|
|
<result property="tablename" column="tablename"/>
|
|
<result property="name" column="name"/>
|
|
<result property="picture" column="picture"/>
|
|
</resultMap>
|
|
|
|
<select id="selectListVO"
|
|
resultType="com.entity.vo.StoreupVO" >
|
|
SELECT * FROM storeup storeup
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectVO"
|
|
resultType="com.entity.vo.StoreupVO" >
|
|
SELECT storeup.* FROM storeup storeup
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectListView"
|
|
resultType="com.entity.view.StoreupView" >
|
|
|
|
SELECT storeup.* FROM storeup storeup
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
<select id="selectView"
|
|
resultType="com.entity.view.StoreupView" >
|
|
SELECT * FROM storeup storeup <where> 1=1 ${ew.sqlSegment}</where>
|
|
</select>
|
|
|
|
</mapper> |