package com.artfess.yhxt.contract.vo;

import com.artfess.base.annotation.ExcelColumn;

import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
@ApiModel(value="BizEmergeMaterialManagementDetailExcel vo对象", description="应急物资库明细数据导入对象")
public class BizEmergeMaterialManagementDetailExcel {





    @ApiModelProperty(value = "用途")
    @ExcelColumn(value = "name", col = 0)
    private String materialType;

    @ApiModelProperty(value = "名称")
    @ExcelColumn(value = "name", col = 1)
    private String materialTypeValue;

    @ApiModelProperty(value = "数量")
    @ExcelColumn(value = "name", col = 2)
    private String quantity;



    @ApiModelProperty(value = "已用数量")
    @ExcelColumn(value = "name", col = 3)
    private String quantityUsed;

}
