package com.landy.gum.salary.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class FiMonthPieceWorkQueryCondition extends BaseQueryCondition {
|
|
private Integer fipwFactoryId;
|
private String fipwYearMonth;
|
private Integer fimdBbemId;
|
|
public Integer getFipwFactoryId() {
|
return fipwFactoryId;
|
}
|
|
public void setFipwFactoryId(Integer fipwFactoryId) {
|
this.fipwFactoryId = fipwFactoryId;
|
}
|
|
public String getFipwYearMonth() {
|
return fipwYearMonth;
|
}
|
|
public void setFipwYearMonth(String fipwYearMonth) {
|
this.fipwYearMonth = fipwYearMonth;
|
}
|
|
public Integer getFimdBbemId() {
|
return fimdBbemId;
|
}
|
|
public void setFimdBbemId(Integer fimdBbemId) {
|
this.fimdBbemId = fimdBbemId;
|
}
|
|
}
|