## 商品列表价格改为2位小数;

This commit is contained in:
cabbage 2025-05-28 10:38:08 +08:00
parent 1e7363cd4f
commit 1d4b5cd4b1
2 changed files with 2 additions and 10 deletions

View File

@ -4,14 +4,6 @@ import lombok.Data;
import java.util.List;
/**
* @BelongsProject: hzs_cloud
* @BelongsPackage: com.hzs.sale.wares.vo
* @Author: yh
* @CreateTime: 2023-05-15 10:54
* @Description:
* @Version: 1.0
*/
@Data
public class RecommendSpecialAreaVo {
@ -32,4 +24,5 @@ public class RecommendSpecialAreaVo {
* 商品信息
*/
private List<WaresVo> waresList;
}

View File

@ -49,13 +49,12 @@ public class WaresVo {
* 商品价格
*/
@Excel(name = "商品价格")
@BigDecimalFormat("#0.0000")
@BigDecimalFormat
private BigDecimal waresPrice;
/**
* 商品业绩
*/
@Excel(name = "商品业绩")
@BigDecimalFormat("#0.0000")
private BigDecimal waresAchieve;