mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-08 07:58:04 +08:00
更新会员交易记录的冻结金额
This commit is contained in:
@@ -76,7 +76,7 @@ public class OrderService {
|
|||||||
private IMemberBasicInfoService memberBasicInfoService;
|
private IMemberBasicInfoService memberBasicInfoService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IOrderPayRecordService orderPayRecordService;
|
private OrderPayRecordService orderPayRecordService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private WechatPayService wechatPayService;
|
private WechatPayService wechatPayService;
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ public class TempService {
|
|||||||
private WxAppletRemoteService wxAppletRemoteService;
|
private WxAppletRemoteService wxAppletRemoteService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IOrderPayRecordService orderPayRecordService;
|
private OrderPayRecordService orderPayRecordService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IMemberBasicInfoService memberBasicInfoService;
|
private IMemberBasicInfoService memberBasicInfoService;
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
package com.jsowell.pile.domain;
|
package com.jsowell.pile.domain;
|
||||||
|
|
||||||
import com.jsowell.common.enums.ykc.OrderPayRecordEnum;
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Builder;
|
import lombok.Builder;
|
||||||
import lombok.Data;
|
import lombok.Getter;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.Setter;
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 订单支付记录
|
* 订单支付明细
|
||||||
*/
|
*/
|
||||||
@Data
|
@Getter
|
||||||
|
@Setter
|
||||||
@Builder
|
@Builder
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
@@ -28,8 +28,7 @@ public class OrderPayRecord {
|
|||||||
private String orderCode;
|
private String orderCode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 支付方式(1-本金余额支付; 2-赠送余额支付; 3-白名单支付; 4-微信支付; 5-支付宝支付)
|
* 支付方式(1-本金余额支付;2-赠送余额支付;3-白名单支付;4-微信支付;5-支付宝支付)
|
||||||
* @see OrderPayRecordEnum
|
|
||||||
*/
|
*/
|
||||||
private String payMode;
|
private String payMode;
|
||||||
|
|
||||||
@@ -38,15 +37,20 @@ public class OrderPayRecord {
|
|||||||
*/
|
*/
|
||||||
private BigDecimal payAmount;
|
private BigDecimal payAmount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 收单机构(0-本账户余额;1-微信支付;2-汇付支付)
|
||||||
|
*/
|
||||||
|
private String acquirer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 退款金额
|
* 退款金额
|
||||||
*/
|
*/
|
||||||
private BigDecimal refundAmount;
|
private BigDecimal refundAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 收单机构(0-本账户余额;1-微信支付;2-汇付支付)
|
* 扣款记录
|
||||||
*/
|
*/
|
||||||
private String acquirer;
|
private String deductionRecord;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建人
|
* 创建人
|
||||||
@@ -56,7 +60,7 @@ public class OrderPayRecord {
|
|||||||
/**
|
/**
|
||||||
* 创建时间
|
* 创建时间
|
||||||
*/
|
*/
|
||||||
private LocalDateTime createTime;
|
private Date createTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新人
|
* 更新人
|
||||||
@@ -66,7 +70,7 @@ public class OrderPayRecord {
|
|||||||
/**
|
/**
|
||||||
* 更新时间
|
* 更新时间
|
||||||
*/
|
*/
|
||||||
private LocalDateTime updateTime;
|
private Date updateTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除标识(0-正常;1-删除)
|
* 删除标识(0-正常;1-删除)
|
||||||
|
|||||||
@@ -6,19 +6,41 @@ import org.apache.ibatis.annotations.Param;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public interface OrderPayRecordMapper {
|
public interface OrderPayRecordMapper {
|
||||||
int deleteByPrimaryKey(Integer id);
|
/**
|
||||||
|
* insert record to table selective
|
||||||
// int insert(OrderPayRecord record);
|
*
|
||||||
|
* @param record the record
|
||||||
// int insertSelective(OrderPayRecord record);
|
* @return insert count
|
||||||
|
*/
|
||||||
|
int insertSelective(OrderPayRecord record);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* select by primary key
|
||||||
|
*
|
||||||
|
* @param id primary key
|
||||||
|
* @return object by primary key
|
||||||
|
*/
|
||||||
OrderPayRecord selectByPrimaryKey(Integer id);
|
OrderPayRecord selectByPrimaryKey(Integer id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* update record selective
|
||||||
|
*
|
||||||
|
* @param record the updated record
|
||||||
|
* @return update count
|
||||||
|
*/
|
||||||
int updateByPrimaryKeySelective(OrderPayRecord record);
|
int updateByPrimaryKeySelective(OrderPayRecord record);
|
||||||
|
|
||||||
|
int updateBatch(List<OrderPayRecord> list);
|
||||||
|
|
||||||
|
int batchInsert(@Param("list") List<OrderPayRecord> list);
|
||||||
|
|
||||||
|
int insertOrUpdate(OrderPayRecord record);
|
||||||
|
|
||||||
|
int insertOrUpdateSelective(OrderPayRecord record);
|
||||||
|
|
||||||
|
int deleteByPrimaryKey(Integer id);
|
||||||
|
|
||||||
int updateByPrimaryKey(OrderPayRecord record);
|
int updateByPrimaryKey(OrderPayRecord record);
|
||||||
|
|
||||||
int batchInsert(@Param("payRecordList") List<OrderPayRecord> payRecordList);
|
|
||||||
|
|
||||||
List<OrderPayRecord> getOrderPayRecordList(@Param("orderCode") String orderCode);
|
List<OrderPayRecord> getOrderPayRecordList(@Param("orderCode") String orderCode);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
package com.jsowell.pile.service;
|
||||||
|
|
||||||
|
import com.jsowell.pile.domain.OrderPayRecord;
|
||||||
|
import com.jsowell.pile.vo.web.OrderDetailInfoVO;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public interface OrderPayRecordService{
|
||||||
|
|
||||||
|
|
||||||
|
int insertSelective(OrderPayRecord record);
|
||||||
|
|
||||||
|
OrderPayRecord selectByPrimaryKey(Integer id);
|
||||||
|
|
||||||
|
int updateByPrimaryKeySelective(OrderPayRecord record);
|
||||||
|
|
||||||
|
int updateBatch(List<OrderPayRecord> list);
|
||||||
|
|
||||||
|
int insertOrUpdate(OrderPayRecord record);
|
||||||
|
|
||||||
|
int insertOrUpdateSelective(OrderPayRecord record);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量保存订单支付记录
|
||||||
|
* @param payRecordList
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
int batchInsert(List<OrderPayRecord> payRecordList);
|
||||||
|
|
||||||
|
List<OrderPayRecord> getOrderPayRecordList(String orderCode);
|
||||||
|
|
||||||
|
List<OrderDetailInfoVO.PayRecord> selectOrderPayInfoList(String orderCode);
|
||||||
|
|
||||||
|
}
|
||||||
@@ -96,7 +96,7 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService {
|
|||||||
private WxAppletRemoteService wxAppletRemoteService;
|
private WxAppletRemoteService wxAppletRemoteService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IOrderPayRecordService orderPayRecordService;
|
private OrderPayRecordService orderPayRecordService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IMemberBasicInfoService memberBasicInfoService;
|
private IMemberBasicInfoService memberBasicInfoService;
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ import java.math.BigDecimal;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class OrderPayRecordServiceImpl implements IOrderPayRecordService {
|
public class OrderPayRecordServiceImpl implements OrderPayRecordService {
|
||||||
|
|
||||||
@Resource
|
@Resource
|
||||||
private OrderPayRecordMapper orderPayRecordMapper;
|
private OrderPayRecordMapper orderPayRecordMapper;
|
||||||
@@ -62,6 +62,7 @@ public class OrderPayRecordServiceImpl implements IOrderPayRecordService {
|
|||||||
/**
|
/**
|
||||||
* 查询订单支付信息
|
* 查询订单支付信息
|
||||||
* 加缓存
|
* 加缓存
|
||||||
|
*
|
||||||
* @param orderCode
|
* @param orderCode
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@@ -146,4 +147,29 @@ public class OrderPayRecordServiceImpl implements IOrderPayRecordService {
|
|||||||
return payRecordList;
|
return payRecordList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int insertSelective(OrderPayRecord record) {
|
||||||
|
return orderPayRecordMapper.insertSelective(record);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public OrderPayRecord selectByPrimaryKey(Integer id) {
|
||||||
|
return orderPayRecordMapper.selectByPrimaryKey(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int updateBatch(List<OrderPayRecord> list) {
|
||||||
|
return orderPayRecordMapper.updateBatch(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int insertOrUpdate(OrderPayRecord record) {
|
||||||
|
return orderPayRecordMapper.insertOrUpdate(record);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int insertOrUpdateSelective(OrderPayRecord record) {
|
||||||
|
return orderPayRecordMapper.insertOrUpdateSelective(record);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,8 +8,9 @@
|
|||||||
<result column="order_code" jdbcType="VARCHAR" property="orderCode" />
|
<result column="order_code" jdbcType="VARCHAR" property="orderCode" />
|
||||||
<result column="pay_mode" jdbcType="VARCHAR" property="payMode" />
|
<result column="pay_mode" jdbcType="VARCHAR" property="payMode" />
|
||||||
<result column="pay_amount" jdbcType="DECIMAL" property="payAmount" />
|
<result column="pay_amount" jdbcType="DECIMAL" property="payAmount" />
|
||||||
<result column="refund_amount" jdbcType="DECIMAL" property="refundAmount" />
|
|
||||||
<result column="acquirer" jdbcType="VARCHAR" property="acquirer" />
|
<result column="acquirer" jdbcType="VARCHAR" property="acquirer" />
|
||||||
|
<result column="refund_amount" jdbcType="DECIMAL" property="refundAmount" />
|
||||||
|
<result column="deduction_record" jdbcType="VARCHAR" property="deductionRecord" />
|
||||||
<result column="create_by" jdbcType="VARCHAR" property="createBy" />
|
<result column="create_by" jdbcType="VARCHAR" property="createBy" />
|
||||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||||
<result column="update_by" jdbcType="VARCHAR" property="updateBy" />
|
<result column="update_by" jdbcType="VARCHAR" property="updateBy" />
|
||||||
@@ -18,7 +19,7 @@
|
|||||||
</resultMap>
|
</resultMap>
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
<!--@mbg.generated-->
|
<!--@mbg.generated-->
|
||||||
id, order_code, pay_mode, pay_amount, refund_amount, acquirer,
|
id, order_code, pay_mode, pay_amount, acquirer, refund_amount, deduction_record,
|
||||||
create_by, create_time, update_by, update_time, del_flag
|
create_by, create_time, update_by, update_time, del_flag
|
||||||
</sql>
|
</sql>
|
||||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||||
@@ -28,64 +29,372 @@
|
|||||||
from order_pay_record
|
from order_pay_record
|
||||||
where id = #{id,jdbcType=INTEGER}
|
where id = #{id,jdbcType=INTEGER}
|
||||||
</select>
|
</select>
|
||||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.jsowell.pile.domain.OrderPayRecord" useGeneratedKeys="true">
|
||||||
<!--@mbg.generated-->
|
<!--@mbg.generated-->
|
||||||
delete from order_pay_record
|
insert into order_pay_record
|
||||||
where id = #{id,jdbcType=INTEGER}
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
</delete>
|
<if test="orderCode != null">
|
||||||
|
order_code,
|
||||||
|
</if>
|
||||||
|
<if test="payMode != null">
|
||||||
|
pay_mode,
|
||||||
|
</if>
|
||||||
|
<if test="payAmount != null">
|
||||||
|
pay_amount,
|
||||||
|
</if>
|
||||||
|
<if test="acquirer != null">
|
||||||
|
acquirer,
|
||||||
|
</if>
|
||||||
|
<if test="refundAmount != null">
|
||||||
|
refund_amount,
|
||||||
|
</if>
|
||||||
|
<if test="deductionRecord != null">
|
||||||
|
deduction_record,
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null">
|
||||||
|
create_by,
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null">
|
||||||
|
create_time,
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null">
|
||||||
|
update_by,
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null">
|
||||||
|
update_time,
|
||||||
|
</if>
|
||||||
|
<if test="delFlag != null">
|
||||||
|
del_flag,
|
||||||
|
</if>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="orderCode != null">
|
||||||
|
#{orderCode,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="payMode != null">
|
||||||
|
#{payMode,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="payAmount != null">
|
||||||
|
#{payAmount,jdbcType=DECIMAL},
|
||||||
|
</if>
|
||||||
|
<if test="acquirer != null">
|
||||||
|
#{acquirer,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="refundAmount != null">
|
||||||
|
#{refundAmount,jdbcType=DECIMAL},
|
||||||
|
</if>
|
||||||
|
<if test="deductionRecord != null">
|
||||||
|
#{deductionRecord,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null">
|
||||||
|
#{createBy,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null">
|
||||||
|
#{createTime,jdbcType=TIMESTAMP},
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null">
|
||||||
|
#{updateBy,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null">
|
||||||
|
#{updateTime,jdbcType=TIMESTAMP},
|
||||||
|
</if>
|
||||||
|
<if test="delFlag != null">
|
||||||
|
#{delFlag,jdbcType=CHAR},
|
||||||
|
</if>
|
||||||
|
</trim>
|
||||||
|
</insert>
|
||||||
<update id="updateByPrimaryKeySelective" parameterType="com.jsowell.pile.domain.OrderPayRecord">
|
<update id="updateByPrimaryKeySelective" parameterType="com.jsowell.pile.domain.OrderPayRecord">
|
||||||
<!--@mbg.generated-->
|
<!--@mbg.generated-->
|
||||||
update order_pay_record
|
update order_pay_record
|
||||||
<set>
|
<set>
|
||||||
<if test="orderCode != null and orderCode != ''">
|
<if test="orderCode != null">
|
||||||
order_code = #{orderCode,jdbcType=VARCHAR},
|
order_code = #{orderCode,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
<if test="payMode != null and payMode != ''">
|
<if test="payMode != null">
|
||||||
pay_mode = #{payMode,jdbcType=VARCHAR},
|
pay_mode = #{payMode,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
<if test="payAmount != null">
|
<if test="payAmount != null">
|
||||||
pay_amount = #{payAmount,jdbcType=DECIMAL},
|
pay_amount = #{payAmount,jdbcType=DECIMAL},
|
||||||
</if>
|
</if>
|
||||||
<if test="refundAmount != null">
|
|
||||||
refund_amount = #{refundAmount,jdbcType=DECIMAL},
|
|
||||||
</if>
|
|
||||||
<if test="acquirer != null">
|
<if test="acquirer != null">
|
||||||
acquirer = #{acquirer,jdbcType=VARCHAR},
|
acquirer = #{acquirer,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
<if test="createBy != null and createBy != ''">
|
<if test="refundAmount != null">
|
||||||
|
refund_amount = #{refundAmount,jdbcType=DECIMAL},
|
||||||
|
</if>
|
||||||
|
<if test="deductionRecord != null">
|
||||||
|
deduction_record = #{deductionRecord,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null">
|
||||||
create_by = #{createBy,jdbcType=VARCHAR},
|
create_by = #{createBy,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
<if test="createTime != null">
|
<if test="createTime != null">
|
||||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||||
</if>
|
</if>
|
||||||
<if test="updateBy != null and updateBy != ''">
|
<if test="updateBy != null">
|
||||||
update_by = #{updateBy,jdbcType=VARCHAR},
|
update_by = #{updateBy,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
<if test="updateTime != null">
|
<if test="updateTime != null">
|
||||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||||
</if>
|
</if>
|
||||||
<if test="delFlag != null and delFlag != ''">
|
<if test="delFlag != null">
|
||||||
del_flag = #{delFlag,jdbcType=CHAR},
|
del_flag = #{delFlag,jdbcType=CHAR},
|
||||||
</if>
|
</if>
|
||||||
</set>
|
</set>
|
||||||
where id = #{id,jdbcType=INTEGER}
|
where id = #{id,jdbcType=INTEGER}
|
||||||
</update>
|
</update>
|
||||||
<update id="updateByPrimaryKey" parameterType="com.jsowell.pile.domain.OrderPayRecord">
|
<update id="updateBatch" parameterType="java.util.List">
|
||||||
<!--@mbg.generated-->
|
<!--@mbg.generated-->
|
||||||
update order_pay_record
|
update order_pay_record
|
||||||
set order_code = #{orderCode,jdbcType=VARCHAR},
|
<trim prefix="set" suffixOverrides=",">
|
||||||
|
<trim prefix="order_code = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.orderCode,jdbcType=VARCHAR}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="pay_mode = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.payMode,jdbcType=VARCHAR}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="pay_amount = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.payAmount,jdbcType=DECIMAL}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="acquirer = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.acquirer,jdbcType=VARCHAR}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="refund_amount = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.refundAmount,jdbcType=DECIMAL}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="deduction_record = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.deductionRecord,jdbcType=VARCHAR}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="create_by = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.createBy,jdbcType=VARCHAR}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="create_time = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.createTime,jdbcType=TIMESTAMP}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="update_by = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.updateBy,jdbcType=VARCHAR}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="update_time = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.updateTime,jdbcType=TIMESTAMP}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="del_flag = case" suffix="end,">
|
||||||
|
<foreach collection="list" index="index" item="item">
|
||||||
|
when id = #{item.id,jdbcType=INTEGER} then #{item.delFlag,jdbcType=CHAR}
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
</trim>
|
||||||
|
where id in
|
||||||
|
<foreach close=")" collection="list" item="item" open="(" separator=", ">
|
||||||
|
#{item.id,jdbcType=INTEGER}
|
||||||
|
</foreach>
|
||||||
|
</update>
|
||||||
|
<insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map" useGeneratedKeys="true">
|
||||||
|
<!--@mbg.generated-->
|
||||||
|
insert into order_pay_record
|
||||||
|
(order_code, pay_mode, pay_amount, acquirer, refund_amount, deduction_record, create_by,
|
||||||
|
create_time, update_by, update_time, del_flag)
|
||||||
|
values
|
||||||
|
<foreach collection="list" item="item" separator=",">
|
||||||
|
(#{item.orderCode,jdbcType=VARCHAR}, #{item.payMode,jdbcType=VARCHAR}, #{item.payAmount,jdbcType=DECIMAL},
|
||||||
|
#{item.acquirer,jdbcType=VARCHAR}, #{item.refundAmount,jdbcType=DECIMAL}, #{item.deductionRecord,jdbcType=VARCHAR},
|
||||||
|
#{item.createBy,jdbcType=VARCHAR}, #{item.createTime,jdbcType=TIMESTAMP}, #{item.updateBy,jdbcType=VARCHAR},
|
||||||
|
#{item.updateTime,jdbcType=TIMESTAMP}, #{item.delFlag,jdbcType=CHAR})
|
||||||
|
</foreach>
|
||||||
|
</insert>
|
||||||
|
<insert id="insertOrUpdate" keyColumn="id" keyProperty="id" parameterType="com.jsowell.pile.domain.OrderPayRecord" useGeneratedKeys="true">
|
||||||
|
<!--@mbg.generated-->
|
||||||
|
insert into order_pay_record
|
||||||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="id != null">
|
||||||
|
id,
|
||||||
|
</if>
|
||||||
|
order_code,
|
||||||
|
pay_mode,
|
||||||
|
pay_amount,
|
||||||
|
acquirer,
|
||||||
|
refund_amount,
|
||||||
|
deduction_record,
|
||||||
|
create_by,
|
||||||
|
create_time,
|
||||||
|
update_by,
|
||||||
|
update_time,
|
||||||
|
del_flag,
|
||||||
|
</trim>
|
||||||
|
values
|
||||||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="id != null">
|
||||||
|
#{id,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
|
#{orderCode,jdbcType=VARCHAR},
|
||||||
|
#{payMode,jdbcType=VARCHAR},
|
||||||
|
#{payAmount,jdbcType=DECIMAL},
|
||||||
|
#{acquirer,jdbcType=VARCHAR},
|
||||||
|
#{refundAmount,jdbcType=DECIMAL},
|
||||||
|
#{deductionRecord,jdbcType=VARCHAR},
|
||||||
|
#{createBy,jdbcType=VARCHAR},
|
||||||
|
#{createTime,jdbcType=TIMESTAMP},
|
||||||
|
#{updateBy,jdbcType=VARCHAR},
|
||||||
|
#{updateTime,jdbcType=TIMESTAMP},
|
||||||
|
#{delFlag,jdbcType=CHAR},
|
||||||
|
</trim>
|
||||||
|
on duplicate key update
|
||||||
|
<trim suffixOverrides=",">
|
||||||
|
<if test="id != null">
|
||||||
|
id = #{id,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
|
order_code = #{orderCode,jdbcType=VARCHAR},
|
||||||
pay_mode = #{payMode,jdbcType=VARCHAR},
|
pay_mode = #{payMode,jdbcType=VARCHAR},
|
||||||
pay_amount = #{payAmount,jdbcType=DECIMAL},
|
pay_amount = #{payAmount,jdbcType=DECIMAL},
|
||||||
refund_amount = #{refundAmount,jdbcType=DECIMAL},
|
|
||||||
acquirer = #{acquirer,jdbcType=VARCHAR},
|
acquirer = #{acquirer,jdbcType=VARCHAR},
|
||||||
|
refund_amount = #{refundAmount,jdbcType=DECIMAL},
|
||||||
|
deduction_record = #{deductionRecord,jdbcType=VARCHAR},
|
||||||
create_by = #{createBy,jdbcType=VARCHAR},
|
create_by = #{createBy,jdbcType=VARCHAR},
|
||||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||||
update_by = #{updateBy,jdbcType=VARCHAR},
|
update_by = #{updateBy,jdbcType=VARCHAR},
|
||||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||||
del_flag = #{delFlag,jdbcType=CHAR}
|
del_flag = #{delFlag,jdbcType=CHAR},
|
||||||
where id = #{id,jdbcType=INTEGER}
|
</trim>
|
||||||
</update>
|
</insert>
|
||||||
|
<insert id="insertOrUpdateSelective" keyColumn="id" keyProperty="id" parameterType="com.jsowell.pile.domain.OrderPayRecord" useGeneratedKeys="true">
|
||||||
|
<!--@mbg.generated-->
|
||||||
|
insert into order_pay_record
|
||||||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="id != null">
|
||||||
|
id,
|
||||||
|
</if>
|
||||||
|
<if test="orderCode != null">
|
||||||
|
order_code,
|
||||||
|
</if>
|
||||||
|
<if test="payMode != null">
|
||||||
|
pay_mode,
|
||||||
|
</if>
|
||||||
|
<if test="payAmount != null">
|
||||||
|
pay_amount,
|
||||||
|
</if>
|
||||||
|
<if test="acquirer != null">
|
||||||
|
acquirer,
|
||||||
|
</if>
|
||||||
|
<if test="refundAmount != null">
|
||||||
|
refund_amount,
|
||||||
|
</if>
|
||||||
|
<if test="deductionRecord != null">
|
||||||
|
deduction_record,
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null">
|
||||||
|
create_by,
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null">
|
||||||
|
create_time,
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null">
|
||||||
|
update_by,
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null">
|
||||||
|
update_time,
|
||||||
|
</if>
|
||||||
|
<if test="delFlag != null">
|
||||||
|
del_flag,
|
||||||
|
</if>
|
||||||
|
</trim>
|
||||||
|
values
|
||||||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="id != null">
|
||||||
|
#{id,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
|
<if test="orderCode != null">
|
||||||
|
#{orderCode,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="payMode != null">
|
||||||
|
#{payMode,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="payAmount != null">
|
||||||
|
#{payAmount,jdbcType=DECIMAL},
|
||||||
|
</if>
|
||||||
|
<if test="acquirer != null">
|
||||||
|
#{acquirer,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="refundAmount != null">
|
||||||
|
#{refundAmount,jdbcType=DECIMAL},
|
||||||
|
</if>
|
||||||
|
<if test="deductionRecord != null">
|
||||||
|
#{deductionRecord,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null">
|
||||||
|
#{createBy,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null">
|
||||||
|
#{createTime,jdbcType=TIMESTAMP},
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null">
|
||||||
|
#{updateBy,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null">
|
||||||
|
#{updateTime,jdbcType=TIMESTAMP},
|
||||||
|
</if>
|
||||||
|
<if test="delFlag != null">
|
||||||
|
#{delFlag,jdbcType=CHAR},
|
||||||
|
</if>
|
||||||
|
</trim>
|
||||||
|
on duplicate key update
|
||||||
|
<trim suffixOverrides=",">
|
||||||
|
<if test="id != null">
|
||||||
|
id = #{id,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
|
<if test="orderCode != null">
|
||||||
|
order_code = #{orderCode,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="payMode != null">
|
||||||
|
pay_mode = #{payMode,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="payAmount != null">
|
||||||
|
pay_amount = #{payAmount,jdbcType=DECIMAL},
|
||||||
|
</if>
|
||||||
|
<if test="acquirer != null">
|
||||||
|
acquirer = #{acquirer,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="refundAmount != null">
|
||||||
|
refund_amount = #{refundAmount,jdbcType=DECIMAL},
|
||||||
|
</if>
|
||||||
|
<if test="deductionRecord != null">
|
||||||
|
deduction_record = #{deductionRecord,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null">
|
||||||
|
create_by = #{createBy,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null">
|
||||||
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null">
|
||||||
|
update_by = #{updateBy,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null">
|
||||||
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||||
|
</if>
|
||||||
|
<if test="delFlag != null">
|
||||||
|
del_flag = #{delFlag,jdbcType=CHAR},
|
||||||
|
</if>
|
||||||
|
</trim>
|
||||||
|
</insert>
|
||||||
|
|
||||||
<insert id="batchInsert">
|
<insert id="batchInsert">
|
||||||
insert into order_pay_record
|
insert into order_pay_record
|
||||||
|
|||||||
Reference in New Issue
Block a user