parent
d4d7d9995a
commit
b315b3a045
@ -0,0 +1,13 @@ |
||||
package com.bellmann.model.bo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class MergeSoftBO { |
||||
|
||||
private Long typeAndVerId; |
||||
|
||||
private String softVer; |
||||
|
||||
private Integer softCount; |
||||
} |
@ -0,0 +1,24 @@ |
||||
package com.bellmann.model.query; |
||||
|
||||
import com.bellmann.common.base.BasePageQuery; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
@EqualsAndHashCode(callSuper = true) |
||||
@Data |
||||
public class SoftMergeReportQuery extends BasePageQuery { |
||||
|
||||
private Long area; |
||||
|
||||
private String devName; |
||||
|
||||
private String devHardVer; |
||||
|
||||
private String category; |
||||
|
||||
private String softVer; |
||||
|
||||
private String onLineStartTime; |
||||
|
||||
private String onLineEndTime; |
||||
} |
@ -0,0 +1,27 @@ |
||||
package com.bellmann.model.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
@ColumnWidth(20) |
||||
public class SoftVerMergeExportVO { |
||||
|
||||
@ExcelProperty(value = "厂商") |
||||
private String category; |
||||
@ExcelProperty(value = "设备型号") |
||||
private String devName; |
||||
@ExcelProperty(value = "硬件版本") |
||||
private String devHard; |
||||
@ExcelProperty(value = "终端数量") |
||||
private Integer hardCount; |
||||
@ExcelProperty(value = "软件版本") |
||||
private String softVer; |
||||
@ExcelProperty(value = "归并版本数") |
||||
private Integer softCount; |
||||
@ExcelProperty(value = "设备类型") |
||||
private String devType; |
||||
@ExcelProperty(value = "归并率") |
||||
private String softAvg; |
||||
} |
@ -0,0 +1,25 @@ |
||||
package com.bellmann.model.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
@Schema(description = "软件归并率统计") |
||||
public class SoftVerMergeVO { |
||||
|
||||
private String category; |
||||
|
||||
private String devName; |
||||
|
||||
private String devHard; |
||||
|
||||
private Integer hardCount; |
||||
|
||||
private String softVer; |
||||
|
||||
private Integer softCount; |
||||
|
||||
private String devType; |
||||
|
||||
private String softAvg; |
||||
} |
Loading…
Reference in new issue