package com.landy.gum.report.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class IncomeStatementQueryCondition extends BaseQueryCondition {
|
|
private String fivoDate;
|
private String fiboId;
|
private String factoryId;
|
|
public String getFivoDate() {
|
return fivoDate;
|
}
|
|
public void setFivoDate(String fivoDate) {
|
this.fivoDate = fivoDate;
|
}
|
|
public String getFiboId() {
|
return fiboId;
|
}
|
|
public void setFiboId(String fiboId) {
|
this.fiboId = fiboId;
|
}
|
|
public String getFactoryId() {
|
return factoryId;
|
}
|
|
public void setFactoryId(String factoryId) {
|
this.factoryId = factoryId;
|
}
|
|
}
|