All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.openyelp.commons.RpcSerializable Maven / Gradle / Ivy

There is a newer version: 1.04
Show newest version
/** 
 * 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.io.Serializable; /** * 服务器返回类 * @author Administrator * */ public class RpcSerializable implements Serializable { /** * 服务器返回信息.可以用改标记服务器的运行情况,比如为0表示服务器处理成功,为-1表示处理失败 */ private int code; public int getCode() { return code; } public void setCode(int code) { this.code = code; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy