jiangping
2024-08-27 83fce8b0ab9ea1fdf388b95c3e66f6a5c124b0d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.doumee.dao.openapi.response;
 
import com.doumee.core.utils.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/12/7 11:19
 */
@Data
@ApiModel("【月台】按天统计运单返回参数")
public class PlatformOrderNumByDateResponse {
    @ApiModelProperty(value = "运单完成量", example = "1")
    private int doneNum;
 
    @ApiModelProperty(value = "运单总量", example = "1")
    private int totalNum;
}