<?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">
|
<!-- namespace:该mapper.xml映射文件的 唯一标识 -->
|
<mapper namespace="com.hx.phip.dao.mapper.RefundRecordConsumePayMapper">
|
|
<!-- 整个实体类修改,表字段=实体类字段-->
|
<sql id="Update_Column_All">
|
<trim prefixOverrides=",">
|
,refundTotal = #{refundTotal},consumePayId = #{consumePayId},refundMethodId = #{refundMethodId},isDel = #{isDel},createTime = #{createTime},editTime = #{editTime}
|
</trim>
|
</sql>
|
|
<!-- 后续通过 namespace.id-->
|
<!--parameterType:输入参数的类型
|
resultType:查询返回结果值的类型 ,返回类型 -->
|
<insert id="insert" parameterType="com.hx.phiappt.model.refund.RefundRecordConsumePay">
|
<selectKey keyProperty="id" resultType="String" order="BEFORE">
|
select replace(uuid(),'-','') from dual
|
</selectKey>
|
insert into refund_record_consume_pay (id,refundTotal,consumePayId,refundMethodId,isDel,createTime,editTime) values (#{id},#{refundTotal},#{consumePayId},#{refundMethodId},#{isDel},#{createTime},#{editTime})
|
</insert>
|
|
<insert id="insertById" parameterType="com.hx.phiappt.model.refund.RefundRecordConsumePay">
|
insert into refund_record_consume_pay (id,refundTotal,consumePayId,refundMethodId,isDel,createTime,editTime) values (#{id},#{refundTotal},#{consumePayId},#{refundMethodId},#{isDel},#{createTime},#{editTime})
|
</insert>
|
|
<select id="selectList" resultType="com.hx.phiappt.model.refund.RefundRecordConsumePay" parameterType="com.hx.mybatisTool.SqlSentence" >
|
${sqlSentence}
|
</select>
|
|
<select id="selectListMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" >
|
${sqlSentence}
|
</select>
|
|
<select id="selectOne" resultType="com.hx.phiappt.model.refund.RefundRecordConsumePay" parameterType="com.hx.mybatisTool.SqlSentence" >
|
${sqlSentence}
|
</select>
|
|
<select id="selectOneMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" >
|
${sqlSentence}
|
</select>
|
|
<select id="selectCount" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" >
|
select
|
COUNT(*)
|
from refund_record_consume_pay
|
WHERE ${sqlSentence}
|
</select>
|
|
<select id="selectCountSql" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" >
|
${sqlSentence}
|
</select>
|
|
<select id="selectOneByKey" resultType="com.hx.phiappt.model.refund.RefundRecordConsumePay" parameterType="java.lang.Object" >
|
select
|
id,refundTotal,consumePayId,refundMethodId,isDel,createTime,editTime
|
from refund_record_consume_pay
|
WHERE id = #{value}
|
</select>
|
|
<select id="selectOneByKeyBlob" resultType="com.hx.phiappt.model.refund.RefundRecordConsumePay" parameterType="java.lang.Object" >
|
select
|
id,refundTotal,consumePayId,refundMethodId,isDel,createTime,editTime
|
from refund_record_consume_pay
|
WHERE id = #{value}
|
</select>
|
|
<update id="updateWhere" parameterType="com.hx.mybatisTool.SqlSentence">
|
update
|
refund_record_consume_pay
|
SET ${sqlSentence}
|
</update>
|
|
<update id="updateAll" parameterType="com.hx.phiappt.model.refund.RefundRecordConsumePay">
|
update refund_record_consume_pay
|
SET <include refid="Update_Column_All"/>
|
WHERE id = #{id}
|
</update>
|
|
<delete id="deleteWhere" parameterType="com.hx.mybatisTool.SqlSentence">
|
delete from refund_record_consume_pay WHERE ${sqlSentence}
|
</delete>
|
|
<delete id="deleteById" parameterType="java.lang.Object">
|
delete from refund_record_consume_pay WHERE id = #{value}
|
</delete>
|
|
</mapper>
|