## 金额、业绩显示2位小数;
This commit is contained in:
parent
1f543d06c7
commit
8a5bce6b9d
|
@ -1,25 +1,13 @@
|
||||||
package com.hzs.report.member.vo;/**
|
package com.hzs.report.member.vo;
|
||||||
* @Description:
|
|
||||||
* @Author: yuhui
|
|
||||||
* @Time: 2023/8/26 15:25
|
|
||||||
* @Classname: MemberResettleAchieveVo
|
|
||||||
* @PackageName: com.hzs.report.member.vo
|
|
||||||
*/
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import com.hzs.common.core.annotation.BigDecimalFormat;
|
||||||
import com.hzs.common.core.annotation.Excel;
|
import com.hzs.common.core.annotation.Excel;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
/**
|
|
||||||
*@BelongsProject: hzs_cloud
|
|
||||||
*@BelongsPackage: com.hzs.report.member.vo
|
|
||||||
*@Author: yh
|
|
||||||
*@CreateTime: 2023-08-26 15:25
|
|
||||||
*@Description: TODO
|
|
||||||
*@Version: 1.0
|
|
||||||
*/
|
|
||||||
@Data
|
@Data
|
||||||
public class MemberResettleAchieveVo {
|
public class MemberResettleAchieveVo {
|
||||||
|
|
||||||
|
@ -90,31 +78,35 @@ public class MemberResettleAchieveVo {
|
||||||
/**
|
/**
|
||||||
* 左区新增金额
|
* 左区新增金额
|
||||||
*/
|
*/
|
||||||
|
@BigDecimalFormat
|
||||||
@Excel(name = "左区新增金额")
|
@Excel(name = "左区新增金额")
|
||||||
private BigDecimal leftNewAddAmount=BigDecimal.ONE;
|
private BigDecimal leftNewAddAmount = BigDecimal.ONE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 右区新增金额
|
* 右区新增金额
|
||||||
*/
|
*/
|
||||||
|
@BigDecimalFormat
|
||||||
@Excel(name = "右区新增金额")
|
@Excel(name = "右区新增金额")
|
||||||
private BigDecimal rightNewAddAmount=BigDecimal.ONE;
|
private BigDecimal rightNewAddAmount = BigDecimal.ONE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 左区新增业绩(pv)
|
* 左区新增业绩(pv)
|
||||||
*/
|
*/
|
||||||
|
@BigDecimalFormat
|
||||||
@Excel(name = "左区新增业绩")
|
@Excel(name = "左区新增业绩")
|
||||||
private BigDecimal leftNewAddAchieve=BigDecimal.ONE;
|
private BigDecimal leftNewAddAchieve = BigDecimal.ONE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 右区新增业绩(pv)
|
* 右区新增业绩(pv)
|
||||||
*/
|
*/
|
||||||
|
@BigDecimalFormat
|
||||||
@Excel(name = "右区新增业绩")
|
@Excel(name = "右区新增业绩")
|
||||||
private BigDecimal rightNewAddAchieve=BigDecimal.ONE;
|
private BigDecimal rightNewAddAchieve = BigDecimal.ONE;
|
||||||
/**
|
/**
|
||||||
* 订单日期
|
* 订单日期
|
||||||
*/
|
*/
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
// @Excel(name = "订单日期",dateFormat = "yyyy-MM-dd HH:mm:ss")
|
// @Excel(name = "订单日期",dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date orderTime;
|
private Date orderTime;
|
||||||
/**
|
/**
|
||||||
* 首购累计
|
* 首购累计
|
||||||
|
|
Loading…
Reference in New Issue