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;
|
}
|
}
|