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

com.sghd.logging.Record Maven / Gradle / Ivy

The newest version!
package com.sghd.logging;

/**
 * 所有记录利用顶级接口
 */
public interface Record {
	/** 运营商标识 */
	int getOperator();
	/** 服标识 */
	int getArea();
	/** 日志时间 */
	long getTime();
	/**设置时间*/
	void setTime(long time);
	/**设置附加信息*/
	void setInformation(String info);
	/**获取玩家id*/
	long getUserId();
	/**获取来源*/
	void setSource(String source);
	String getSource();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy