package com.iplatform.base.pojo;
|
|
/**
|
* 分组数据列表,查询条件。
|
* @author 时克英
|
* @date 2023-05-20
|
*/
|
public class GroupDataParam extends KeywordsParam{
|
|
public Integer getGid() {
|
return gid;
|
}
|
|
public void setGid(Integer gid) {
|
this.gid = gid;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
// @ApiModelProperty(value = "分组id")
|
private Integer gid;
|
|
// @ApiModelProperty(value = "状态(1:开启;2:关闭;)")
|
private Integer status;
|
}
|