mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
change jobId field type to int
This commit is contained in:
@@ -7,7 +7,7 @@ package com.taobao.arthas.core.command.model;
|
||||
*/
|
||||
public abstract class ResultModel {
|
||||
|
||||
private Integer jobId;
|
||||
private int jobId;
|
||||
|
||||
/**
|
||||
* Command type (name)
|
||||
@@ -17,11 +17,11 @@ public abstract class ResultModel {
|
||||
public abstract String getType();
|
||||
|
||||
|
||||
public Integer getJobId() {
|
||||
public int getJobId() {
|
||||
return jobId;
|
||||
}
|
||||
|
||||
public void setJobId(Integer jobId) {
|
||||
public void setJobId(int jobId) {
|
||||
this.jobId = jobId;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user