fix: label class error
This commit is contained in:
parent
608b472039
commit
153aba6822
|
@ -0,0 +1,14 @@
|
|||
package com.gitee.jenkins.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class Label {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String color;
|
||||
|
||||
}
|
|
@ -40,7 +40,7 @@ public class PullRequest {
|
|||
/**
|
||||
* PR 标签
|
||||
*/
|
||||
private List<String> labels;
|
||||
private List<Label> labels;
|
||||
|
||||
private List<String> languages;
|
||||
|
||||
|
|
Loading…
Reference in New Issue