package com.landy.gum.base.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class BbWorkTypeMembersQueryCondition extends BaseQueryCondition {
|
|
private String factoryId;
|
private String yearMonth;
|
|
public String getFactoryId() {
|
return factoryId;
|
}
|
|
public void setFactoryId(String factoryId) {
|
this.factoryId = factoryId;
|
}
|
|
public String getYearMonth() {
|
return yearMonth;
|
}
|
|
public void setYearMonth(String yearMonth) {
|
this.yearMonth = yearMonth;
|
}
|
|
}
|