package org.jeecg.modules.eam.dto; import lombok.Data; import org.jeecgframework.poi.excel.annotation.Excel; import java.math.BigDecimal; @Data public class EquipmentCategoryStatistics { /** * 设备种类 */ @Excel(name = "设备种类", width = 15, orderNum = "1") private String equipmentType; /** * 设备总数 */ @Excel(name = "设备总数", width = 15, orderNum = "2") private Integer equipmentCount; /** * 总原值 */ @Excel(name = "总原值", width = 15, orderNum = "3") private BigDecimal originalValue; /** * 高精度总数 */ @Excel(name = "高精度总数", width = 15, orderNum = "4") private Integer highPrecisionCount; /** * 高精度原值 */ @Excel(name = "高精度原值", width = 15, orderNum = "5") private BigDecimal highPrecisionOriginalValue; /** * 国产总数 */ @Excel(name = "国产总数", width = 15, orderNum = "6") private Integer domesticCount; /** * 国产原值 */ @Excel(name = "国产原值", width = 15, orderNum = "7") private BigDecimal domesticOriginalValue; /** * 进口总数 */ @Excel(name = "进口总数", width = 15, orderNum = "8") private Integer importCount; /** * 进口原值 */ @Excel(name = "进口原值", width = 15, orderNum = "9") private BigDecimal importOriginalValue; /** * 完好总数 */ @Excel(name = "完好总数", width = 15, orderNum = "10") private Integer intactCount; /** * 完好原值 */ @Excel(name = "完好原值", width = 15, orderNum = "11") private BigDecimal intactOriginalValue; }