package com.panzhihua.common.model.dtos.neighbor;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @auther lyq
|
* @create 2021-04-14 15:02:14
|
* @describe 邻里圈回复请求参数
|
*/
|
@Data
|
@ApiModel("邻里圈回复请求参数")
|
public class ComActNeighborReplyAppDTO {
|
|
@ApiModelProperty("邻里圈id")
|
private Long circleId;
|
|
@ApiModelProperty("回复类型(1.评论 2.回复)")
|
private Integer type;
|
|
@ApiModelProperty("业务id(当type为1时,这里是评论的id,当type=2时,这里是回复的id)")
|
private Long serviceId;
|
|
@ApiModelProperty("邻里圈回复内容")
|
private String content;
|
|
@ApiModelProperty(value = "用户id", hidden = true)
|
private Long userId;
|
|
@ApiModelProperty(value = "用户手机号", hidden = true)
|
private String phone;
|
|
/**
|
* 回复类型(1.评论 2.回复)
|
*/
|
public interface type {
|
int pl = 1;
|
int hf = 2;
|
}
|
}
|