EquipmentCheckVO.java 594 字节
package com.skua.modules.equipment.vo;

import com.skua.modules.equipment.entity.EquipmentCheck;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;

/**
 * @author sonin
 * @date 2021/10/11 13:52
 */
@Data
public class EquipmentCheckVO extends EquipmentCheck {

    @Excel(name = "所属机构", width = 15)
    private String departIdName;

    @Excel(name = "经办人", width = 15)
    private String useByName;

    @Excel(name = "盘盈货品", width = 15)
    private String profitName;

    @Excel(name = "盘亏货品", width = 15)
    private String lossName;
}