Helius
2020-08-06 f0e93eb5b38d5ce8abeb949a475d1112c2a1645f
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;
 
}