统计接口新增1212
This commit is contained in:
@@ -0,0 +1,33 @@
|
|||||||
|
package com.delivery.project.document.domain.vo;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 按日期(月)统计
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class DeliveryMonthlyStatVO {
|
||||||
|
|
||||||
|
/** 统计月份 */
|
||||||
|
@JsonFormat(pattern = "yyyy-MM")
|
||||||
|
private String statMonth;
|
||||||
|
|
||||||
|
/** 订单数 */
|
||||||
|
private Long orderCount;
|
||||||
|
|
||||||
|
/** 总配送吨位 */
|
||||||
|
private BigDecimal totalDeliveryTon;
|
||||||
|
|
||||||
|
/** 总货物面积 */
|
||||||
|
private BigDecimal totalGoodsSize;
|
||||||
|
|
||||||
|
/** 总实际费用 */
|
||||||
|
private BigDecimal totalActualFee;
|
||||||
|
|
||||||
|
/** 总行驶公里数 */
|
||||||
|
private BigDecimal totalKm;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user