yangys
5 天以前 44fda5fa3787c78e74d62f9713dd36abdeadcac8
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
26
27
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;
}