Helius
2020-08-06 577f3c26ec7aac75048b79b33ecd236fd007f528
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xcong.excoin.modules.documentary.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "FollowFollowerNoticeVo", description = "返回值")
public class FollowFollowerNoticeVo {
    
    @ApiModelProperty("标题")
    private String title;
    
    @ApiModelProperty("内容")
    private String content;
 
}