package com.moon.server.entity.shujian;
|
|
import java.io.Serializable;
|
|
@SuppressWarnings("ALL")
|
public class LayerResultEntity implements Serializable {
|
private static final long serialVersionUID = -1916127613292276655L;
|
|
private String status;
|
|
private Result result;
|
|
private String command;
|
|
public LayerResultEntity() {
|
this.result = new Result();
|
}
|
|
public class Result {
|
private Integer layer_id;
|
|
private Integer mission_id;
|
|
public Result() {
|
}
|
|
public Integer getLayer_id() {
|
return layer_id;
|
}
|
|
public void setLayer_id(Integer layer_id) {
|
this.layer_id = layer_id;
|
}
|
|
public Integer getMission_id() {
|
return mission_id;
|
}
|
|
public void setMission_id(Integer mission_id) {
|
this.mission_id = mission_id;
|
}
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public Result getResult() {
|
return result;
|
}
|
|
public void setResult(Result result) {
|
this.result = result;
|
}
|
|
public String getCommand() {
|
return command;
|
}
|
|
public void setCommand(String command) {
|
this.command = command;
|
}
|
}
|