用户 二维码
This commit is contained in:
@@ -27,4 +27,5 @@ public interface UserInfoService extends IService<UserInfo> {
|
||||
|
||||
void updateDistributionAmount(long userId, BigDecimal amount);
|
||||
|
||||
void initAc(UserInfo userInfo);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.czg.order.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 用于获取 商品成本价
|
||||
*
|
||||
* @author ww
|
||||
* @description
|
||||
*/
|
||||
@Data
|
||||
public class ProductCostAmountVO {
|
||||
private Long productId;
|
||||
private Long skuId;
|
||||
//向上取整 保留两位小数
|
||||
private BigDecimal costAmount;
|
||||
|
||||
private Long count;
|
||||
private BigDecimal totalCostAmount;
|
||||
}
|
||||
Reference in New Issue
Block a user