Commit b45e10ea authored by tangwei's avatar tangwei

增加统计类

parent 674a26db
package com.yeejoin.equipmanage.dto;
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @description:
* @author: tw
* @createDate: 2023/2/23
*/
@Data
public class EquipmentcountDto {
@ExcelIgnore
private String id;
//单位名称
@ExcelProperty(value = "单位名称", index = 0)
private String bizOrgName;
//装备定义名称
@ExcelProperty(value = "装备名称", index = 1)
private String equipmentName;
//装备定义名称
@ExcelIgnore
private String equipmentId;
//单位code
@ExcelIgnore
private String bizOrgCode;
//在位
@ExcelProperty(value = "在位", index = 2)
private String zw;
//报废
@ExcelProperty(value = "报废", index = 3)
private String bf;
//车载
@ExcelProperty(value = "车载", index = 4)
private String cz;
//配装
@ExcelProperty(value = "配装", index = 5)
private String pz;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment