重新缴费

This commit is contained in:
wangxiaopeng
2024-04-16 18:55:21 +08:00
parent fa718af87f
commit 49e82f751b
2 changed files with 4 additions and 10 deletions

View File

@@ -199,10 +199,10 @@
#{param.updateUserId},
</if>
<if test="param.deleted != null">
#{param.deleted}
#{param.deleted},
</if>
<if test="param.partnerNum != null">
#{param.partnerNum}
#{param.partnerNum},
</if>
</trim>
ON DUPLICATE KEY UPDATE
@@ -283,7 +283,7 @@
update_user_id = #{param.updateUserId},
</if>
<if test="param.deleted != null">
deleted = #{param.deleted}
deleted = #{param.deleted},
</if>
<if test="param.partnerNum != null">
partner_num = #{param.partnerNum}

View File

@@ -34,15 +34,9 @@ public class LinePayServiceImpl implements LinePayService {
@Resource
private LinePayDAO linePayDAO;
@Resource
private HyPartnerUserInfoDAO hyPartnerUserInfoDAO;
@Resource
private LineInfoDAO lineInfoDAO;
@Resource
LineInfoMapper lineInfoMapper;
@Override
public LinePayVO getLinePayInfo(Long lineId) {
LinePayVO result = null;
@@ -76,7 +70,7 @@ public class LinePayServiceImpl implements LinePayService {
lineInfo.setWorkflowSubStage(WorkflowSubStageEnum.PAY_DEPOSIT.getCode());
lineInfo.setWorkflowSubStageStatus(WorkflowSubStageStatusEnum.PAY_DEPOSIT_50.getCode());
lineInfoMapper.insertOrUpdate(lineInfo);
lineInfoDAO.insertOrUpdate(lineInfo);
return linePayDO.getId();
}