package com.moon.server.entity.shujian;
|
|
import java.io.Serializable;
|
|
@SuppressWarnings("AlibabaLowerCamelCaseVariableNaming")
|
public class ServiceResultEntity implements Serializable {
|
private static final long serialVersionUID = -8647553888787072121L;
|
|
private Integer result;
|
|
private String command;
|
|
private String status;
|
|
public ServiceResultEntity() {
|
}
|
|
public Integer getResult() {
|
return result;
|
}
|
|
public void setResult(Integer result) {
|
this.result = result;
|
}
|
|
public String getCommand() {
|
return command;
|
}
|
|
public void setCommand(String command) {
|
this.command = command;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
}
|