敏捷工具
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

2 years ago
  1. package com.whn.hellospring.model;
  2. import java.util.List;
  3. import java.util.Map;
  4. public class OilPriceBean {
  5. List<Map<String,String>> result;
  6. public List<Map<String, String>> getResult() {
  7. return result;
  8. }
  9. public void setResult(List<Map<String, String>> result) {
  10. this.result = result;
  11. }
  12. @Override
  13. public String toString() {
  14. return "OilPriceBean{" +
  15. "result=" + result +
  16. '}';
  17. }
  18. }