zhanghl
2025-05-23 687c9b21d0c8aedbd0c3f2d64b11cfaad5e38e85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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;