package com.aps.core.domain.mainPlan;
|
|
import com.aps.common.core.annotation.Excel;
|
import com.aps.common.core.web.domain.BaseEntity;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 焊缝统计表V2对象 aps_weld_seam_statistics_v2
|
*
|
* @date 2023-08-01
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class ApsWeldSeamStatisticsV2 extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/** ID */
|
private String id;
|
|
/** 年份 */
|
@Excel(name = "年份")
|
private Integer year;
|
|
/** 月份 */
|
@Excel(name = "月份")
|
private Integer month;
|
|
/** 生产基地 */
|
@Excel(name = "生产基地")
|
private String productionBase;
|
|
/** 管路订单需求 */
|
@Excel(name = "管路订单需求")
|
private BigDecimal pipingOrderRequirement;
|
|
/** 气柜订单需求 */
|
@Excel(name = "气柜订单需求")
|
private BigDecimal gasOrderRequirement;
|
|
/** 管路预测需求 */
|
@Excel(name = "管路预测需求")
|
private BigDecimal pipingPredictionRequirement;
|
|
/** 气柜预测需求 */
|
@Excel(name = "气柜预测需求")
|
private BigDecimal gasPredictionRequirement;
|
|
/** 预留紧急订单产出 */
|
@Excel(name = "预留紧急订单产出")
|
private BigDecimal reserveEmergencyOrderOutput;
|
|
/** 合计 */
|
@Excel(name = "合计")
|
private BigDecimal total;
|
|
/** 天数 */
|
@Excel(name = "天数")
|
private BigDecimal days;
|
|
/** 需求日焊缝 */
|
@Excel(name = "需求日焊缝")
|
private BigDecimal requirementDayWeldSeam;
|
|
/** 生产日焊缝 */
|
@Excel(name = "生产日焊缝")
|
private BigDecimal productionDayWeldSeam;
|
|
/** 是否满足 */
|
@Excel(name = "是否满足")
|
private String isSatisfy;
|
}
|