SwapPathService.java 375 B

12345678910111213
  1. package service;
  2. import com.alibaba.fastjson.JSONArray;
  3. import com.alibaba.fastjson.JSONObject;
  4. import memory.SwapPathMemoryDb;
  5. import model.SwapPath;
  6. public class SwapPathService {
  7. public JSONArray generatePathListByLpAddress(String lpAddress) {
  8. lpAddress = lpAddress.toLowerCase();
  9. return SwapPathMemoryDb.getLevel2PathByLpAddress(lpAddress);
  10. }
  11. }