avatar

枚举类 get Set方法 在lombok中的坑

lombok的类如下所示:

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
package com.divx.service.model.task;

import com.divx.service.model.BaseTypeMedia;
import lombok.Data;

/**
* @author wuzhilang
* @Title: QuestionResult
* @ProjectName yxt-parent
* @Description: QuestionResult
* @date 2019/6/2015:59
*/
@Data
public class QuestionResult {
private long questionId;
private BaseTypeMedia.eQuestionType qType;
private String userAnswer;
private String standardAnswer;
private long userId;
private int instId;
private Boolean result;
private String word;


}

结果属性里面
private BaseTypeMedia.eQuestionType qType;的get方法是

1
getQType();

导致我前端传过来的参数没有被接收到。
用idea生成的getsetter 方法如下:

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
package com.divx.service.model.task;

import com.divx.service.model.BaseTypeMedia;
import lombok.Data;

/**
* @author wuzhilang
* @Title: QuestionResult
* @ProjectName yxt-parent
* @Description: QuestionResult
* @date 2019/6/2015:59
*/
public class QuestionResult {
private long questionId;
private BaseTypeMedia.eQuestionType qType;
private String userAnswer;
private String standardAnswer;
private long userId;
private int instId;
private Boolean result;
private String word;

public long getQuestionId() {
return questionId;
}

public void setQuestionId(long questionId) {
this.questionId = questionId;
}
//别找了就是这个方法
public BaseTypeMedia.eQuestionType getqType() {
return qType;
}

public void setqType(BaseTypeMedia.eQuestionType qType) {
this.qType = qType;
}

public String getUserAnswer() {
return userAnswer;
}

public void setUserAnswer(String userAnswer) {
this.userAnswer = userAnswer;
}

public String getStandardAnswer() {
return standardAnswer;
}

public void setStandardAnswer(String standardAnswer) {
this.standardAnswer = standardAnswer;
}

public long getUserId() {
return userId;
}

public void setUserId(long userId) {
this.userId = userId;
}

public int getInstId() {
return instId;
}

public void setInstId(int instId) {
this.instId = instId;
}

public Boolean getResult() {
return result;
}

public void setResult(Boolean result) {
this.result = result;
}

public String getWord() {
return word;
}

public void setWord(String word) {
this.word = word;
}
}

对的你没看错

1
2
3
4
5
6
7
public void setQuestionId(long questionId) { 
this.questionId = questionId;
}

public BaseTypeMedia.eQuestionType getqType() {
return qType;
}

get set方法是这个样子的。

有没有大神来解释下,为什么

文章作者: 无知的小狼
文章链接: https://bytedance.press/2019/06/30/articles/2019/06/30/1561895110506.html/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 无知的小狼

评论