package org.springblade.mdm.program.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springblade.core.mp.support.Query;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "程序下发/回传统计查询对象")
|
@Setter
|
@Getter
|
public class ProgramExchangeStatVO{
|
@Schema(description = "数量,如下发/固化")
|
private Long count;
|
@Schema(description = "归档数量")
|
private Long filedCount;
|
@Schema(description = "机床编号")
|
private String machineCode;
|
|
@Schema(description = "占比")
|
private BigDecimal countPercent;
|
|
@Schema(description = "归档占比")
|
private BigDecimal fileCountPercent;
|
}
|