From 75d009d6af55daf2ceef23b241a9be72cce118fe Mon Sep 17 00:00:00 2001 From: gongzuming <gongzuming> Date: 星期四, 24 十月 2024 15:26:19 +0800 Subject: [PATCH] 用户访问总量 --- src/main/java/com/mzl/flower/dto/response/supplier/SupplierOrderDTO.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/mzl/flower/dto/response/supplier/SupplierOrderDTO.java b/src/main/java/com/mzl/flower/dto/response/supplier/SupplierOrderDTO.java index 6272fc3..4c02b2d 100644 --- a/src/main/java/com/mzl/flower/dto/response/supplier/SupplierOrderDTO.java +++ b/src/main/java/com/mzl/flower/dto/response/supplier/SupplierOrderDTO.java @@ -37,4 +37,34 @@ @ApiModelProperty("今日配送总数") private Integer deliverTotal; + + @ApiModelProperty("总成交:花农售卖全部的底价合计") + private String allSupplierAmount; + @ApiModelProperty("本月成交:本月售卖的底价合计") + private String curMonSupplierAmount; + @ApiModelProperty("上月成交:上月售卖的底价合计") + private String lastMonSupplierAmount; + @ApiModelProperty("今日成交:今日售卖的底价合计") + private String todaySupplierAmount; + @ApiModelProperty("缺货(本月):本月质检缺货,并且web端审核通过的数量合计") + private String curMonLackNum; + @ApiModelProperty("上月质检缺货,并且web端审核通过的数量合计") + private String lastMonLackNum; + @ApiModelProperty("本月质检降级,并且web端审核通过的数量合计") + private String curMonReduceNum; + @ApiModelProperty("上月质检降级,并且web端审核通过的数量合计") + private String lastMonReduceNum; + @ApiModelProperty("本月质检补货,并且web端审核通过的数量合计") + private String curMonReplaceNum; + @ApiModelProperty("上月质检补货,并且web端审核通过的数量合计") + private String lastMonReplaceNum; + + @ApiModelProperty("总成交扎数") + private String allSupplierFlowerNum; + @ApiModelProperty("本月售后订单") + private String curMonAfterSaleOrderNum; + @ApiModelProperty("本月售后扎数") + private String curMonAfterSaleFlowerNum; + + } -- Gitblit v1.9.3