mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-07 23:57:20 +08:00
增加退款状态描述
This commit is contained in:
@@ -122,6 +122,7 @@ public class FinanceRefundServiceImpl implements IFinanceRefundService {
|
||||
List<FinanceRefundLogVo> list = refundLogMapper.selectJoinList(FinanceRefundLogVo.class, mpjQueryWrapper);
|
||||
|
||||
for (FinanceRefundLogVo vo : list) {
|
||||
vo.setRefundStatusMsg(RefundEnum.getRefundStatusMsg(vo.getRefundStatus()));
|
||||
vo.setCreateTime(TimeUtils.timestampToDate(vo.getCreateTime()));
|
||||
}
|
||||
|
||||
|
||||
@@ -28,6 +28,9 @@ public class FinanceRefundLogVo implements Serializable {
|
||||
@ApiModelProperty("退款状态: [0=退款中, 1=退款成功, 2=退款失败]")
|
||||
private Integer refundStatus;
|
||||
|
||||
@ApiModelProperty("退款状态描述")
|
||||
private String refundStatusMsg;
|
||||
|
||||
@ApiModelProperty("退款信息")
|
||||
private String refundMsg;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user