zhanghl
2025-05-22 93e554de49b2b87c337df71ea9ece51dd4e1d31d
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsResourceGroup.java
@@ -1,10 +1,12 @@
package com.aps.core.domain;
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.time.LocalDateTime;
/**
@@ -30,7 +32,7 @@
    /** 每日理论时间 */
    @Excel(name = "每日理论时间")
    private Long theoryHours;
    private BigDecimal theoryHours;
    /** 截止需求日剩余天数  */
    @Excel(name = "截止需求日剩余天数 ")
@@ -38,17 +40,18 @@
    /** 理论产能 */
    @Excel(name = "理论产能")
    private Long theoryCapacity;
    private BigDecimal theoryCapacity;
    /** 机加需求日期 */
    @Excel(name = "机加需求日期")
    @Excel(name = "机加需求日期",width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime requestDate;
    /** 删除标志(0代表存在 2代表删除) */
    private String delFlag;
    /** 工厂 */
    @Excel(name = "工厂")
//    @Excel(name = "工厂")
    private String plant;
    public void setId(String id) 
@@ -81,12 +84,12 @@
        return devicesQuantity;
    }
    public void setTheoryHours(Long theoryHours)
    public void setTheoryHours(BigDecimal theoryHours)
    {
        this.theoryHours = theoryHours;
    }
    public Long getTheoryHours()
    public BigDecimal getTheoryHours()
    {
        return theoryHours;
    }
@@ -101,12 +104,12 @@
        return restDays;
    }
    public void setTheoryCapacity(Long theoryCapacity)
    public void setTheoryCapacity(BigDecimal theoryCapacity)
    {
        this.theoryCapacity = theoryCapacity;
    }
    public Long getTheoryCapacity()
    public BigDecimal getTheoryCapacity()
    {
        return theoryCapacity;
    }