package com.matrix.system.hive.bean;
|
|
import com.matrix.core.pojo.EntityDTO;
|
import com.matrix.core.anotations.Extend;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import javax.validation.constraints.NotNull;
|
|
/**
|
* @description 跟进评论
|
* @author
|
* @date 2021-01-10 15:15
|
*/
|
public class SysFollowupComment extends EntityDTO{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
|
/**
|
* 跟进id
|
*/
|
@NotNull(message = "跟进记录id不能为空")
|
@ApiModelProperty(value = "跟进id", example = "1")
|
private Long follId;
|
|
|
/**
|
* 员工ID
|
*/
|
private Long staffId;
|
|
|
/**
|
* 评论内容
|
*/
|
@NotNull(message = "评论内容不能为空")
|
@ApiModelProperty(value = "评论内容不能为空", example = "不错")
|
private String content;
|
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public SysFollowupComment setId(Long id) {
|
this.id=id;
|
return this;
|
}
|
|
|
public Long getFollId() {
|
return follId;
|
}
|
|
public SysFollowupComment setFollId(Long follId) {
|
this.follId=follId;
|
return this;
|
}
|
|
|
public Long getStaffId() {
|
return staffId;
|
}
|
|
public SysFollowupComment setStaffId(Long staffId) {
|
this.staffId=staffId;
|
return this;
|
}
|
|
|
public String getContent() {
|
return content;
|
}
|
|
public SysFollowupComment setContent(String content) {
|
this.content=content;
|
return this;
|
}
|
|
|
|
|
}
|