package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class IoNoticeDetailQueryCondition extends BaseQueryCondition {
|
|
private Integer ionoId;
|
private Integer[] ionoIds;
|
private Integer[] iondIds;
|
|
public Integer getIonoId() {
|
return ionoId;
|
}
|
|
public void setIonoId(Integer ionoId) {
|
this.ionoId = ionoId;
|
}
|
|
public Integer[] getIonoIds() {
|
return ionoIds;
|
}
|
|
public void setIonoIds(Integer[] ionoIds) {
|
this.ionoIds = ionoIds;
|
}
|
|
public Integer[] getIondIds() {
|
return iondIds;
|
}
|
|
public void setIondIds(Integer[] iondIds) {
|
this.iondIds = iondIds;
|
}
|
|
|
|
}
|