feat: 科室设备经营分析功能
parent
1bc9fce499
commit
3f4ee2f3e7
@ -0,0 +1,100 @@
|
||||
package com.glxp.api.res.dev;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import com.alibaba.excel.annotation.format.NumberFormat;
|
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class DeviceBusinessProjectExportVo {
|
||||
|
||||
|
||||
@TableField(value = "deptName")
|
||||
@ExcelProperty(value = "部门名称", index = 0)
|
||||
@ColumnWidth(30)
|
||||
private String deptName;
|
||||
|
||||
/**
|
||||
* 收费项目
|
||||
*/
|
||||
@TableField(value = "sfxm")
|
||||
@ExcelProperty(value = "收费项目", index = 1)
|
||||
@ApiModelProperty(value="收费项目")
|
||||
@ColumnWidth(30)
|
||||
private String sfxm;
|
||||
|
||||
/**
|
||||
* 收费名称
|
||||
*/
|
||||
@TableField(value = "sfmc")
|
||||
@ExcelProperty(value = "收费名称", index = 2)
|
||||
@ApiModelProperty(value="收费名称")
|
||||
@ColumnWidth(30)
|
||||
private String sfmc;
|
||||
|
||||
|
||||
/**
|
||||
* 项目总收益
|
||||
*/
|
||||
@TableField(value = "totalProjectRevenue")
|
||||
@ApiModelProperty(value="项目总收益")
|
||||
@ExcelProperty(value = "项目总收益", index = 3)
|
||||
@ColumnWidth(30)
|
||||
private BigDecimal totalProjectRevenue;
|
||||
|
||||
/**
|
||||
* 项目总成本
|
||||
*/
|
||||
@TableField(value = "totalProjectCost")
|
||||
@ExcelProperty(value = "项目总成本", index = 4)
|
||||
@ApiModelProperty(value="项目总成本")
|
||||
@ColumnWidth(30)
|
||||
private BigDecimal totalProjectCost;
|
||||
|
||||
|
||||
/**
|
||||
* 总投资回报率ROI
|
||||
*/
|
||||
@TableField(value = "totalROI")
|
||||
@ExcelProperty(value = "总投资回报率ROI", index = 5)
|
||||
@ApiModelProperty(value="总投资回报率ROI")
|
||||
@NumberFormat("#0.00%")
|
||||
@ColumnWidth(30)
|
||||
private BigDecimal totalROI;
|
||||
|
||||
// /**
|
||||
// * 平均年收益
|
||||
// */
|
||||
// @TableField(value = "averageAnnualRevenue")
|
||||
// @ExcelProperty(value = "平均年收益", index = 6)
|
||||
// @ApiModelProperty(value="平均年收益")
|
||||
// @ColumnWidth(30)
|
||||
// private BigDecimal averageAnnualRevenue;
|
||||
|
||||
|
||||
// /**
|
||||
// * 设备利用率
|
||||
// */
|
||||
// @TableField(value = "deviceUtilizationRate")
|
||||
// @ExcelProperty(value = "设备利用率", index = 7)
|
||||
// @ApiModelProperty(value="设备利用率")
|
||||
// @NumberFormat("#0.00%")
|
||||
// @ColumnWidth(30)
|
||||
// private BigDecimal deviceUtilizationRate;
|
||||
|
||||
/**
|
||||
* 设备效益
|
||||
*/
|
||||
@TableField(value = "totalDeviceBenefit")
|
||||
@ApiModelProperty(value="设备效益")
|
||||
@ExcelProperty(value = "设备效益", index = 6)
|
||||
@NumberFormat("#0.00%")
|
||||
@ColumnWidth(30)
|
||||
private BigDecimal totalDeviceBenefit;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue