重新缴费
This commit is contained in:
@@ -199,10 +199,10 @@
|
|||||||
#{param.updateUserId},
|
#{param.updateUserId},
|
||||||
</if>
|
</if>
|
||||||
<if test="param.deleted != null">
|
<if test="param.deleted != null">
|
||||||
#{param.deleted}
|
#{param.deleted},
|
||||||
</if>
|
</if>
|
||||||
<if test="param.partnerNum != null">
|
<if test="param.partnerNum != null">
|
||||||
#{param.partnerNum}
|
#{param.partnerNum},
|
||||||
</if>
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
ON DUPLICATE KEY UPDATE
|
ON DUPLICATE KEY UPDATE
|
||||||
@@ -283,7 +283,7 @@
|
|||||||
update_user_id = #{param.updateUserId},
|
update_user_id = #{param.updateUserId},
|
||||||
</if>
|
</if>
|
||||||
<if test="param.deleted != null">
|
<if test="param.deleted != null">
|
||||||
deleted = #{param.deleted}
|
deleted = #{param.deleted},
|
||||||
</if>
|
</if>
|
||||||
<if test="param.partnerNum != null">
|
<if test="param.partnerNum != null">
|
||||||
partner_num = #{param.partnerNum}
|
partner_num = #{param.partnerNum}
|
||||||
|
|||||||
@@ -34,15 +34,9 @@ public class LinePayServiceImpl implements LinePayService {
|
|||||||
@Resource
|
@Resource
|
||||||
private LinePayDAO linePayDAO;
|
private LinePayDAO linePayDAO;
|
||||||
|
|
||||||
@Resource
|
|
||||||
private HyPartnerUserInfoDAO hyPartnerUserInfoDAO;
|
|
||||||
|
|
||||||
@Resource
|
@Resource
|
||||||
private LineInfoDAO lineInfoDAO;
|
private LineInfoDAO lineInfoDAO;
|
||||||
|
|
||||||
@Resource
|
|
||||||
LineInfoMapper lineInfoMapper;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LinePayVO getLinePayInfo(Long lineId) {
|
public LinePayVO getLinePayInfo(Long lineId) {
|
||||||
LinePayVO result = null;
|
LinePayVO result = null;
|
||||||
@@ -76,7 +70,7 @@ public class LinePayServiceImpl implements LinePayService {
|
|||||||
|
|
||||||
lineInfo.setWorkflowSubStage(WorkflowSubStageEnum.PAY_DEPOSIT.getCode());
|
lineInfo.setWorkflowSubStage(WorkflowSubStageEnum.PAY_DEPOSIT.getCode());
|
||||||
lineInfo.setWorkflowSubStageStatus(WorkflowSubStageStatusEnum.PAY_DEPOSIT_50.getCode());
|
lineInfo.setWorkflowSubStageStatus(WorkflowSubStageStatusEnum.PAY_DEPOSIT_50.getCode());
|
||||||
lineInfoMapper.insertOrUpdate(lineInfo);
|
lineInfoDAO.insertOrUpdate(lineInfo);
|
||||||
return linePayDO.getId();
|
return linePayDO.getId();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user