com.openyelp.commons.RpcListRpcSerializable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonrpc Show documentation
Show all versions of jsonrpc Show documentation
jsonrpc is a lightweight Rpc Framework
/**
* CopyRright (c)1985-2012:宝亿电子
* Project: jsonrpc
* Module ID:
* Comments:
* JDK version used:
* Namespace:package org.json.rpc.commons;
* Author:陈联高
* Create Date: 2012-12-25
* Modified By:ada.young
* Modified Date:2012-12-25
* Why & What is modified
* Version: 1.01
*/
package com.openyelp.commons;
import java.util.List;
/**
* 服务器返回集合数据类
* @author Administrator
*
* @param
*/
public class RpcListRpcSerializable extends RpcSerializable {
private List datas;
public List getDatas() {
return datas;
}
public void setDatas(List datas) {
this.datas = datas;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy