update 生产计划完成率对比报表、导出
parent
bb9d25322a
commit
a84caeacf6
@ -0,0 +1,103 @@
|
||||
package org.dromara.mes.domain.vo;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* 生产计划完成率对比报表
|
||||
*
|
||||
* @author Yinq
|
||||
* @date 2025-02-28
|
||||
*/
|
||||
@Data
|
||||
@ExcelIgnoreUnannotated
|
||||
public class PlanCompletionContrastReportVo implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 物料名称
|
||||
*/
|
||||
@ExcelProperty(value = "物料名称")
|
||||
private String materialName;
|
||||
|
||||
/**
|
||||
* 当日计划
|
||||
*/
|
||||
@ExcelProperty(value = "当日计划")
|
||||
private BigDecimal dayPlanNumber;
|
||||
|
||||
/**
|
||||
* 当日实际
|
||||
*/
|
||||
@ExcelProperty(value = "当日实际")
|
||||
private BigDecimal dayActualNumber;
|
||||
|
||||
/**
|
||||
* 当日差异
|
||||
*/
|
||||
@ExcelProperty(value = "当日差异")
|
||||
private BigDecimal dayDeviationNumber;
|
||||
|
||||
/**
|
||||
* 日完成率
|
||||
*/
|
||||
@ExcelProperty(value = "日完成率")
|
||||
private String dayCompletionRate;
|
||||
|
||||
/**
|
||||
* 当月计划
|
||||
*/
|
||||
@ExcelProperty(value = "当月计划")
|
||||
private BigDecimal monthPlanNumber;
|
||||
|
||||
/**
|
||||
* 当月实际
|
||||
*/
|
||||
@ExcelProperty(value = "当月实际")
|
||||
private BigDecimal monthActualNumber;
|
||||
|
||||
/**
|
||||
* 当月差异
|
||||
*/
|
||||
@ExcelProperty(value = "当月差异")
|
||||
private BigDecimal monthDeviationNumber;
|
||||
|
||||
/**
|
||||
* 月完成率
|
||||
*/
|
||||
@ExcelProperty(value = "月完成率")
|
||||
private String monthCompletionRate;
|
||||
|
||||
/**
|
||||
* 当年计划
|
||||
*/
|
||||
@ExcelProperty(value = "当年计划")
|
||||
private BigDecimal yearPlanNumber;
|
||||
|
||||
/**
|
||||
* 当年实际
|
||||
*/
|
||||
@ExcelProperty(value = "当年实际")
|
||||
private BigDecimal yearActualNumber;
|
||||
|
||||
/**
|
||||
* 当年差异
|
||||
*/
|
||||
@ExcelProperty(value = "当年差异")
|
||||
private BigDecimal yearDeviationNumber;
|
||||
|
||||
/**
|
||||
* 年完成率
|
||||
*/
|
||||
@ExcelProperty(value = "年完成率")
|
||||
private String yearCompletionRate;
|
||||
|
||||
}
|
Loading…
Reference in New Issue