fix getLinePayInfo

This commit is contained in:
shuo.wang
2024-10-30 14:22:10 +08:00
parent d900e0df03
commit 7e95ee0b5c
2 changed files with 3 additions and 1 deletions

View File

@@ -77,5 +77,6 @@ public class LinePayVO {
private String updateUserId;
@ApiModelProperty("缴费金额")
private String amount;
@ApiModelProperty("阶段状态")
private Integer workflowSubStageStatus;
}

View File

@@ -72,6 +72,7 @@ public class LinePayServiceImpl implements LinePayService {
LineInfoDO lineInfo = lineInfoDAO.getLineInfo(lineId);
result.setPartnerName(lineInfo != null ? lineInfo.getUsername() : "");
result.setMobile(lineInfo != null ? lineInfo.getMobile() : "");
result.setWorkflowSubStageStatus(lineInfo.getWorkflowSubStageStatus());
}
return result;
}