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