SellingPriceListSearch.java
package com.tradecloud.dto.product;
import java.io.Serializable;
import java.util.Date;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import com.tradecloud.domain.common.Incoterm;
import com.tradecloud.domain.dto.base.SearchBase;
import com.tradecloud.domain.export.ExportParty;
@Component
@Scope("view")
public class SellingPriceListSearch extends SearchBase implements Serializable {
private static final long serialVersionUID = 1L;
private Incoterm incoterm;
private ExportParty exportParty;
private Date effectiveDateTo;
private Date effectiveDateFrom;
@Override
public String getTableName() {
// TODO Auto-generated method stub
return null;
}
public Incoterm getIncoterm() {
return incoterm;
}
public void setIncoterm(Incoterm incoterm) {
this.incoterm = incoterm;
}
public ExportParty getExportParty() {
return exportParty;
}
public void setExportParty(ExportParty exportParty) {
this.exportParty = exportParty;
}
public Date getEffectiveDateTo() {
return effectiveDateTo;
}
public void setEffectiveDateTo(Date effectiveDateTo) {
this.effectiveDateTo = effectiveDateTo;
}
public Date getEffectiveDateFrom() {
return effectiveDateFrom;
}
public void setEffectiveDateFrom(Date effectiveDateFrom) {
this.effectiveDateFrom = effectiveDateFrom;
}
}