package com.landy.gum.salary.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class FindWorkLeaderForEditQueryCondition extends BaseQueryCondition {
|
|
private String fiwlYearMonth;
|
private Integer fipwFactoryId;
|
private Integer fipwBbwtId;
|
|
public String getYearMonth() {
|
return yearMonth;
|
}
|
|
public void setYearMonth(String yearMonth) {
|
this.yearMonth = yearMonth;
|
}
|
|
public Integer getFipwFactoryId() {
|
return fipwFactoryId;
|
}
|
|
public void setFipwFactoryId(Integer fipwFactoryId) {
|
this.fipwFactoryId = fipwFactoryId;
|
}
|
|
public Integer getFipwBbwtId() {
|
return fipwBbwtId;
|
}
|
|
public void setFipwBbwtId(Integer fipwBbwtId) {
|
this.fipwBbwtId = fipwBbwtId;
|
}
|
|
}
|