32 lines
518 B
Java
32 lines
518 B
Java
package com.yame.uml.model;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* result
|
|
*/
|
|
public class Result {
|
|
|
|
public ResultType type;
|
|
public List<String> content;
|
|
|
|
|
|
public Result() {
|
|
content = new ArrayList<String>();
|
|
}
|
|
|
|
public List<String> getContent() {
|
|
return content;
|
|
}
|
|
|
|
public ResultType getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(ResultType type) {
|
|
this.type = type;
|
|
}
|
|
} |