公告板
版本库
filestore
活动
搜索
登录
iplatform_group
/
walker-dependencies
iplatform平台基础类库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
2.7.18
shikeying
2024-01-11
3b67e947e36133e2a40eb2737b15ea375e157ea0
[iplatform_group/walker-dependencies.git]
/
walker-infrastructure
/
src
/
main
/
java
/
com
/
walker
/
api
/
client
/
JsonTransfer.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.walker.api.client;
/**
* 转换成json字符串的接口定义。
* @author shikeying
* @date 2015-2-11
*
*/
public interface JsonTransfer {
/**
* 把对象序列化成Json字符串格式
* @return
*/
String toJsonString();
}