|
@@ -73,6 +73,13 @@ public class MercMiniDeviceDto {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Data
|
|
|
|
+ @Accessors(chain = true)
|
|
|
|
+ public static class HomePageMonthDTO {
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM")
|
|
|
|
+ private DateTime date;
|
|
|
|
+ }
|
|
|
|
+
|
|
@Data
|
|
@Data
|
|
@Accessors(chain = true)
|
|
@Accessors(chain = true)
|
|
public static class HomePageDayDTO {
|
|
public static class HomePageDayDTO {
|
|
@@ -86,7 +93,18 @@ public class MercMiniDeviceDto {
|
|
@ApiModelProperty(value = "本月收款")
|
|
@ApiModelProperty(value = "本月收款")
|
|
private Integer monthReceivedMoney;
|
|
private Integer monthReceivedMoney;
|
|
@ApiModelProperty(value = "本月销售-订单金额")
|
|
@ApiModelProperty(value = "本月销售-订单金额")
|
|
- private Integer todayOrderTotalMoney;
|
|
|
|
|
|
+ private Integer monthOrderTotalMoney;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "本月销售-到账金额")
|
|
|
|
+ private Integer monthOrderRealMoney;
|
|
|
|
+ @ApiModelProperty(value = "本月销售-数量")
|
|
|
|
+ private Integer monthOrderNum;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "本月订单-未收款金额")
|
|
|
|
+ private Integer noPaymentMoney;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "历史订单-未收款金额")
|
|
|
|
+ private Integer hisNoPaymentMoney;
|
|
}
|
|
}
|
|
|
|
|
|
@Data
|
|
@Data
|