WorkLoadConfiguration.java
package com.tradecloud.domain.configuration;
import com.tradecloud.common.base.PersistenceBase;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name = "WorkLoadConfiguration")
public class WorkLoadConfiguration extends PersistenceBase {
private boolean useFwdPlannedShipmentDate;
private boolean useFwdEstimatedArrivalDate;
public boolean isUseFwdPlannedShipmentDate() {
return useFwdPlannedShipmentDate;
}
public void setUseFwdPlannedShipmentDate(boolean useFwdPlannedShipmentDate) {
this.useFwdPlannedShipmentDate = useFwdPlannedShipmentDate;
}
public boolean isUseFwdEstimatedArrivalDate() {
return useFwdEstimatedArrivalDate;
}
public void setUseFwdEstimatedArrivalDate(boolean useFwdEstimatedArrivalDate) {
this.useFwdEstimatedArrivalDate = useFwdEstimatedArrivalDate;
}
}