forked from angelo/java-retail-app
## Opt - 业绩列表-增加金额&数字/10000(保留4位小数)
This commit is contained in:
parent
fa2b8a78fb
commit
73f989ffdc
|
@ -27,10 +27,12 @@ public class PerformanceVO implements Serializable {
|
||||||
/**
|
/**
|
||||||
* 当月业绩
|
* 当月业绩
|
||||||
*/
|
*/
|
||||||
|
@BigDecimalFormat("#0.0000")
|
||||||
private BigDecimal currentMonthPv;
|
private BigDecimal currentMonthPv;
|
||||||
/**
|
/**
|
||||||
* 当月金额
|
* 当月金额
|
||||||
*/
|
*/
|
||||||
|
@BigDecimalFormat("#0.0000")
|
||||||
private BigDecimal currentMonthAmount;
|
private BigDecimal currentMonthAmount;
|
||||||
/**
|
/**
|
||||||
* 当月盒数
|
* 当月盒数
|
||||||
|
@ -39,10 +41,12 @@ public class PerformanceVO implements Serializable {
|
||||||
/**
|
/**
|
||||||
* 复购业绩
|
* 复购业绩
|
||||||
*/
|
*/
|
||||||
|
@BigDecimalFormat("#0.0000")
|
||||||
private BigDecimal repurchasePv;
|
private BigDecimal repurchasePv;
|
||||||
/**
|
/**
|
||||||
* 复购金额
|
* 复购金额
|
||||||
*/
|
*/
|
||||||
|
@BigDecimalFormat("#0.0000")
|
||||||
private BigDecimal repurchaseAmount;
|
private BigDecimal repurchaseAmount;
|
||||||
/**
|
/**
|
||||||
* 复购盒数
|
* 复购盒数
|
||||||
|
|
Loading…
Reference in New Issue