zhanghl
2025-04-16 dc3dd99bd0eb9e9297e66b958ed4b7b31dd21d1d
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsWeldSeam.java
@@ -1,6 +1,8 @@
package com.aps.core.domain;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
@@ -97,15 +99,17 @@
    @Excel(name = "总焊缝")
    private Long totalWeldSeam;
    /** 工厂 */
//    @Excel(name = "工厂")
    private String plant;
    /** 统计生产年份 */
    @Excel(name = "生产年份List")
    private List<Long> produceYears;
    /** 统计生产月份 */
    @Excel(name = "生产月份List")
    private List<Long> produceMonths;
    public void setId(String id) 
    {
@@ -317,6 +321,26 @@
        return plant;
    }
    public void setProduceYears(List<Long> produceYears)
    {
        this.produceYears = produceYears;
    }
    public List<Long> getProduceYears()
    {
        return produceYears;
    }
    public void setProduceMonths(List<Long> produceMonths)
    {
        this.produceMonths = produceMonths;
    }
    public List<Long> getProduceMonths()
    {
        return produceMonths;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)