refactor: 替换net.sf.json为fastJson

This commit is contained in:
禾几海
2020-08-15 14:39:39 +08:00
parent 94c9fc1c46
commit 47e5030f52
3 changed files with 28 additions and 26 deletions

View File

@@ -2,10 +2,10 @@ package cn.celess.blog.service;
import cn.celess.blog.entity.model.PageData;
import cn.celess.blog.entity.model.WebUpdateModel;
import net.sf.json.JSONObject;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Map;
/**
* @author : xiaohai
@@ -59,5 +59,5 @@ public interface WebUpdateInfoService {
*
* @return
*/
JSONObject getLastestUpdateTime();
Map<String, Object> getLastestUpdateTime();
}