package com.landy.gum.base.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class BbCteamQueryCondition extends BaseQueryCondition {
|
|
private String bbctInfo;
|
private Integer locationid;
|
|
public String getBbctInfo() {
|
return bbctInfo;
|
}
|
|
public void setBbctInfo(String bbctInfo) {
|
this.bbctInfo = bbctInfo;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
}
|