fix getLinePayInfo
This commit is contained in:
@@ -77,5 +77,6 @@ public class LinePayVO {
|
|||||||
private String updateUserId;
|
private String updateUserId;
|
||||||
@ApiModelProperty("缴费金额")
|
@ApiModelProperty("缴费金额")
|
||||||
private String amount;
|
private String amount;
|
||||||
|
@ApiModelProperty("阶段状态")
|
||||||
|
private Integer workflowSubStageStatus;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,6 +72,7 @@ public class LinePayServiceImpl implements LinePayService {
|
|||||||
LineInfoDO lineInfo = lineInfoDAO.getLineInfo(lineId);
|
LineInfoDO lineInfo = lineInfoDAO.getLineInfo(lineId);
|
||||||
result.setPartnerName(lineInfo != null ? lineInfo.getUsername() : "");
|
result.setPartnerName(lineInfo != null ? lineInfo.getUsername() : "");
|
||||||
result.setMobile(lineInfo != null ? lineInfo.getMobile() : "");
|
result.setMobile(lineInfo != null ? lineInfo.getMobile() : "");
|
||||||
|
result.setWorkflowSubStageStatus(lineInfo.getWorkflowSubStageStatus());
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user