xiaoyong931011
2020-08-06 a7d5859d7f95d27ed1be29c437911a083ab9703a
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;
 
}