fix: 霸王餐支付回调修改 增加霸王餐记录

This commit is contained in:
2024-10-30 14:37:29 +08:00
parent 9055607154
commit e9885f76cb
9 changed files with 340 additions and 2 deletions

View File

@@ -0,0 +1,31 @@
<?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.chaozhanggui.system.cashierservice.mapper.TbFreeDineRecordMapper">
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.TbFreeDineRecord">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="state" column="state" jdbcType="INTEGER"/>
<result property="orderId" column="order_id" jdbcType="INTEGER"/>
<result property="orderAmount" column="order_amount" jdbcType="DECIMAL"/>
<result property="rechargeAmount" column="recharge_amount" jdbcType="DECIMAL"/>
<result property="payAmount" column="pay_amount" jdbcType="DECIMAL"/>
<result property="userId" column="user_id" jdbcType="INTEGER"/>
<result property="vipUserId" column="vip_user_id" jdbcType="INTEGER"/>
<result property="shopId" column="shop_id" jdbcType="INTEGER"/>
<result property="couponInfo" column="coupon_info" jdbcType="VARCHAR"/>
<result property="pointsNum" column="points_num" jdbcType="INTEGER"/>
<result property="rechargeTimes" column="recharge_times" jdbcType="INTEGER"/>
<result property="rechargeThreshold" column="recharge_threshold" jdbcType="DECIMAL"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,state,order_id,
order_amount,recharge_amount,pay_amount,
user_id,vip_user_id,shop_id,
coupon_info,points_num,recharge_times,
recharge_threshold,create_time
</sql>
</mapper>