zhanghl
2025-05-13 a9f55fb1ab24f43fee70b16e1a8c58a33fc59fa6
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlan.java
@@ -3,9 +3,12 @@
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.io.Serial;
import java.math.BigDecimal;
import java.util.Date;
@@ -13,14 +16,17 @@
 * 钣金计划管理对象 aps_plate_plan
 * 
 * @author ruoyi
 * @date 2025-04-08
 * @date  2025-04-08
 */
@EqualsAndHashCode(callSuper = true)
@Data
public class ApsPlatePlan extends BaseEntity
{
    @Serial
    private static final long serialVersionUID = 1L;
    /** 主键id */
    private String id;
    private Long id;
    /** 主计划员 */
    @Excel(name = "主计划")
@@ -183,37 +189,25 @@
    @Excel(name = "工单创建时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date orderCreateTime;
    /** 自定义时间 */
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    @Excel(name = "自定义时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
//    private Date customTime;
    /** 生产基地 */
    @Excel(name = "生产基地")
    private String productionBase;
    /** 未匹配的生产数量*/
    private BigDecimal unmatchedQuantity;
    /** 专业归属*/
    private String professionalAffiliation;
    public Date getOrderCreateTime() {
        return orderCreateTime;
    }
    /** 需求追溯ID*/
    private String requireId;
    public void setOrderCreateTime(Date orderCreateTime) {
        this.orderCreateTime = orderCreateTime;
    }
    public String getProductionBase() {
        return productionBase;
    }
    public void setProductionBase(String productionBase) {
        this.productionBase = productionBase;
    }
    public BigDecimal getUnmatchedQuantity() {
        return unmatchedQuantity;
    }
    public void setUnmatchedQuantity(BigDecimal unmatchedQuantity) {
        this.unmatchedQuantity = unmatchedQuantity;
    }
    private Integer version;
/*
    public String getOpStatus() {
        return opStatus;
    }
@@ -638,5 +632,5 @@
    public void setPlant(String plant) {
        this.plant = plant;
    }
    }*/
}