|
|
@@ -1,6 +1,6 @@
|
|
|
<?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.jeeplus.modules.sys.mapper.HpPayAccountMapper">
|
|
|
+<mapper namespace="com.jeeplus.modules.wechatpay.mapper.HpPayAccountMapper">
|
|
|
|
|
|
<sql id="hpPayAccountColumns">
|
|
|
a.id AS "id",
|
|
|
@@ -23,7 +23,7 @@
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
- <select id="get" resultType="HpPayAccount" >
|
|
|
+ <select id="get" resultType="com.jeeplus.modules.wechatpay.entity.HpPayAccount" >
|
|
|
SELECT
|
|
|
<include refid="hpPayAccountColumns"/>
|
|
|
FROM hp_pay_account a
|
|
|
@@ -31,7 +31,7 @@
|
|
|
WHERE a.id = #{id}
|
|
|
</select>
|
|
|
|
|
|
- <select id="findList" resultType="HpPayAccount" >
|
|
|
+ <select id="findList" resultType="com.jeeplus.modules.wechatpay.entity.HpPayAccount" >
|
|
|
SELECT
|
|
|
<include refid="hpPayAccountColumns"/>
|
|
|
FROM hp_pay_account a
|
|
|
@@ -50,7 +50,7 @@
|
|
|
</choose>
|
|
|
</select>
|
|
|
|
|
|
- <select id="findAllList" resultType="HpPayAccount" >
|
|
|
+ <select id="findAllList" resultType="com.jeeplus.modules.wechatpay.entity.HpPayAccount" >
|
|
|
SELECT
|
|
|
<include refid="hpPayAccountColumns"/>
|
|
|
FROM hp_pay_account a
|
|
|
@@ -131,7 +131,7 @@
|
|
|
|
|
|
|
|
|
<!-- 根据实体名称和字段名称和字段值获取唯一记录 -->
|
|
|
- <select id="findUniqueByProperty" resultType="HpPayAccount" statementType="STATEMENT">
|
|
|
+ <select id="findUniqueByProperty" resultType="com.jeeplus.modules.wechatpay.entity.HpPayAccount" statementType="STATEMENT">
|
|
|
select * FROM hp_pay_account where ${propertyName} = '${value}'
|
|
|
</select>
|
|
|
|