Commit 667dbcb6 by zhangxingmin

Merge remote-tracking branch 'origin/test' into test

parents 663974b6 61ccbcc6
...@@ -144,6 +144,12 @@ public class ApiExpectedFortunePageResponse { ...@@ -144,6 +144,12 @@ public class ApiExpectedFortunePageResponse {
private String currency; private String currency;
/** /**
* 出账币种名称
*/
@Schema(description = "出账币种名称")
private String currencyName;
/**
* 默认结算汇率 * 默认结算汇率
*/ */
@Schema(description = "默认结算汇率") @Schema(description = "默认结算汇率")
......
...@@ -134,7 +134,7 @@ public class ExpectedFortuneServiceImpl extends ServiceImpl<ExpectedFortuneMappe ...@@ -134,7 +134,7 @@ public class ExpectedFortuneServiceImpl extends ServiceImpl<ExpectedFortuneMappe
ApiExpectedFortunePageResponse vo = new ApiExpectedFortunePageResponse(); ApiExpectedFortunePageResponse vo = new ApiExpectedFortunePageResponse();
BeanUtils.copyProperties(ef, vo); BeanUtils.copyProperties(ef, vo);
vo.setCurrency(CurrencyEnum.toLabel(ef.getCurrency())); vo.setCurrencyName(CurrencyEnum.toLabel(ef.getCurrency()));
String ratio = finalBrokerRatioMap.get(ef.getBrokerBizId()); String ratio = finalBrokerRatioMap.get(ef.getBrokerBizId());
vo.setCommissionRatio(ratio); vo.setCommissionRatio(ratio);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment