|
@@ -10,6 +10,7 @@ import lombok.experimental.Accessors;
|
|
import javax.validation.Valid;
|
|
import javax.validation.Valid;
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotNull;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
+import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
public class MercMiniDeviceDto {
|
|
public class MercMiniDeviceDto {
|
|
@@ -218,6 +219,8 @@ public class MercMiniDeviceDto {
|
|
@Data
|
|
@Data
|
|
@Accessors(chain = true)
|
|
@Accessors(chain = true)
|
|
public static class DayCountVO {
|
|
public static class DayCountVO {
|
|
|
|
+ @ApiModelProperty(name = "订单总成本价")
|
|
|
|
+ private Integer orderTotalPriceCost;
|
|
|
|
|
|
@ApiModelProperty("订单数")
|
|
@ApiModelProperty("订单数")
|
|
private Integer orderNum;
|
|
private Integer orderNum;
|
|
@@ -252,6 +255,12 @@ public class MercMiniDeviceDto {
|
|
@ApiModelProperty(value = "到账金额=付款金额-退款金额")
|
|
@ApiModelProperty(value = "到账金额=付款金额-退款金额")
|
|
private Integer dayOrderRealMoney;
|
|
private Integer dayOrderRealMoney;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "今日毛利率 (销售额-成本)/销售额")
|
|
|
|
+ private BigDecimal grossProfitMargin;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "昨日毛利率 (销售额-成本)/销售额")
|
|
|
|
+ private BigDecimal hisGrossProfitMargin;
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|