shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
}