72 lines
1.1 KiB
Java
72 lines
1.1 KiB
Java
|
package customization.test;
|
||
|
|
||
|
import com.simplerss.dataobject.Item;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @author EBU7-dev1-ayh
|
||
|
* @create 2021/8/31 0031 23:28
|
||
|
* testVo
|
||
|
*/
|
||
|
|
||
|
|
||
|
public class TestVo {
|
||
|
boolean code;
|
||
|
String errorMessage;
|
||
|
String traceId;
|
||
|
int index;
|
||
|
List<TestVoItem> items;
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return "TestVo{" +
|
||
|
"code=" + code +
|
||
|
", errorMessage='" + errorMessage + '\'' +
|
||
|
", traceId='" + traceId + '\'' +
|
||
|
", index=" + index +
|
||
|
", items=" + items +
|
||
|
'}';
|
||
|
}
|
||
|
|
||
|
public int getIndex() {
|
||
|
return index;
|
||
|
}
|
||
|
|
||
|
public void setIndex(int index) {
|
||
|
this.index = index;
|
||
|
}
|
||
|
|
||
|
public boolean isCode() {
|
||
|
return code;
|
||
|
}
|
||
|
|
||
|
public void setCode(boolean code) {
|
||
|
this.code = code;
|
||
|
}
|
||
|
|
||
|
public String getErrorMessage() {
|
||
|
return errorMessage;
|
||
|
}
|
||
|
|
||
|
public void setErrorMessage(String errorMessage) {
|
||
|
this.errorMessage = errorMessage;
|
||
|
}
|
||
|
|
||
|
public String getTraceId() {
|
||
|
return traceId;
|
||
|
}
|
||
|
|
||
|
public void setTraceId(String traceId) {
|
||
|
this.traceId = traceId;
|
||
|
}
|
||
|
|
||
|
public List<TestVoItem> getItems() {
|
||
|
return items;
|
||
|
}
|
||
|
|
||
|
public void setItems(List<TestVoItem> items) {
|
||
|
this.items = items;
|
||
|
}
|
||
|
}
|