package com.doumee.dao.web.response.platformReport;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* 今日月台完成订单统计
|
*
|
* @Author : Rk
|
* @create 2024/10/25 10:59
|
*/
|
@Data
|
public class PlatformGroupFinishVO {
|
|
|
@ApiModelProperty(value = "完成量 万支")
|
private Integer finishData;
|
|
@ApiModelProperty(value = "月台主键")
|
private Integer platformId;
|
|
@ApiModelProperty(value = "月台组名称")
|
private String platformGroupName;
|
|
|
|
|
}
|