-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathGitlabCommitStats.java
More file actions
46 lines (35 loc) · 880 Bytes
/
GitlabCommitStats.java
File metadata and controls
46 lines (35 loc) · 880 Bytes
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
package org.gitlab.api.models;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @ClassName GitlabCommitStats
* @Description
* @Author mochen
* @Date 2021/6/3 14:47
* @Version 1.0
**/
public class GitlabCommitStats {
@JsonProperty("additions")
private Integer additions;
@JsonProperty("deletions")
private Integer deletions;
@JsonProperty("total")
private Integer total;
public Integer getAdditions() {
return additions;
}
public void setAdditions(Integer additions) {
this.additions = additions;
}
public Integer getDeletions() {
return deletions;
}
public void setDeletions(Integer deletions) {
this.deletions = deletions;
}
public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
}