|
@@ -1,6 +1,8 @@
|
|
|
package org.jeecg.modules.Index.entity.kpi;
|
|
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
|
|
|
/**
|
|
|
* @author dzc
|
|
@@ -13,30 +15,48 @@ import lombok.Data;
|
|
|
public class IndexKpiDetail {
|
|
|
|
|
|
/** 部门名称 */
|
|
|
+ @Excel(name = "部门名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "部门名称")
|
|
|
private String depart;
|
|
|
|
|
|
/** 任务号 */
|
|
|
+ @Excel(name = "任务号", width = 15)
|
|
|
+ @ApiModelProperty(value = "任务号")
|
|
|
private String taskno;
|
|
|
|
|
|
/** 任务名称 */
|
|
|
+ @Excel(name = "任务名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "任务名称")
|
|
|
private String taskname;
|
|
|
|
|
|
/** 合同额 */
|
|
|
+ @Excel(name = "合同额", width = 15)
|
|
|
+ @ApiModelProperty(value = "合同额")
|
|
|
private String hte;
|
|
|
|
|
|
/** 已收款 */
|
|
|
+ @Excel(name = "已收款", width = 15)
|
|
|
+ @ApiModelProperty(value = "已收款")
|
|
|
private String ysk;
|
|
|
|
|
|
/** 预估价 */
|
|
|
+ @Excel(name = "预估价", width = 15)
|
|
|
+ @ApiModelProperty(value = "预估价")
|
|
|
private String ygj;
|
|
|
|
|
|
/** 上个月进度 */
|
|
|
+ @Excel(name = "上个月进度", width = 15)
|
|
|
+ @ApiModelProperty(value = "上个月进度")
|
|
|
private String lastjd;
|
|
|
|
|
|
/** 当月进度 */
|
|
|
+ @Excel(name = "当月进度", width = 15)
|
|
|
+ @ApiModelProperty(value = "当月进度")
|
|
|
private String nowjd;
|
|
|
|
|
|
/** 进度差 */
|
|
|
+ @Excel(name = "进度差", width = 15)
|
|
|
+ @ApiModelProperty(value = "进度差")
|
|
|
private String newjd;
|
|
|
|
|
|
}
|