huanghongfa
2021-09-02 177249c76aeea0b4bf8d8816d4994e3b445b45ce
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
package com.panzhihua.common.model.dtos.community;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 随手拍评论新增
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2021-01-21 15:38
 **/
@Data
@ApiModel("随手拍评论新增")
public class ComActEasyPhotoCommentDTO {
 
    @ApiModelProperty("随手拍主键id")
    private Long id;
 
    @ApiModelProperty("评论内容")
    private String comment;
 
    @ApiModelProperty(value = "评论者id", hidden = true)
    private Long userId;
 
}