zhanghl
2025-05-22 93e554de49b2b87c337df71ea9ece51dd4e1d31d
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsMaterialManagement.java
@@ -1,11 +1,13 @@
package com.aps.core.domain;
import java.util.Date;
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import java.math.BigDecimal;
import java.util.Date;
/**
 * 物料管理对象 aps_material_management
@@ -18,7 +20,7 @@
    private static final long serialVersionUID = 1L;
    /** id */
    private String id;
    private Long id;
    /** 料号 */
    @Excel(name = "料号")
@@ -50,7 +52,7 @@
    /** 最早可提前生产天数 */
    @Excel(name = "最早可提前生产天数")
    private String advanceProductionDays;
    private BigDecimal advanceProductionDays;
    /** 拆分批量 */
    @Excel(name = "拆分批量")
@@ -69,26 +71,26 @@
    private String applicableWorkshop;
    /** 生效日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "生效日期", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "生效日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date effectiveDate;
    /** 失效日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "失效日期", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "失效日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date expiringDate;
    /** 集成日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "集成日期", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "集成日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date integrationDate;
    public void setId(String id)
    public void setId(Long id)
    {
        this.id = id;
    }
    public String getId()
    public Long getId()
    {
        return id;
    }
@@ -163,12 +165,12 @@
        return versionNumber;
    }
    public void setAdvanceProductionDays(String advanceProductionDays)
    public void setAdvanceProductionDays(BigDecimal advanceProductionDays)
    {
        this.advanceProductionDays = advanceProductionDays;
    }
    public String getAdvanceProductionDays()
    public BigDecimal getAdvanceProductionDays()
    {
        return advanceProductionDays;
    }