重新缴费
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user