- package service;
- import com.alibaba.fastjson.JSONArray;
- import com.alibaba.fastjson.JSONObject;
- import memory.SwapPathMemoryDb;
- import model.SwapPath;
- public class SwapPathService {
- public JSONArray generatePathListByLpAddress(String lpAddress) {
- lpAddress = lpAddress.toLowerCase();
- return SwapPathMemoryDb.getLevel2PathByLpAddress(lpAddress);
- }
- }
|