Helius
2021-01-25 89e17a219d8a6d208e4cb32a43e90abb89b3c93b
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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;
    }
       
 
 
  
}