puzhibing
2023-03-15 79962435853baf5a28e08461f46a831fffa1a4b0
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
32
33
34
35
36
37
38
package com.stylefeng.guns.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel("活动")
public class ActivityWarpper {
    @ApiModelProperty("活动id")
    private Integer id;
    @ApiModelProperty("活动描述")
    private String content;
    @ApiModelProperty("完成情况")
    private String carryOut;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getCarryOut() {
        return carryOut;
    }
 
    public void setCarryOut(String carryOut) {
        this.carryOut = carryOut;
    }
}