敏捷工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
472 B

package com.whn.hellospring.model;
import java.util.List;
import java.util.Map;
public class OilPriceBean {
List<Map<String,String>> result;
public List<Map<String, String>> getResult() {
return result;
}
public void setResult(List<Map<String, String>> result) {
this.result = result;
}
@Override
public String toString() {
return "OilPriceBean{" +
"result=" + result +
'}';
}
}