cn.mapway.document.module.AccessData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-tools-doc Show documentation
Show all versions of api-tools-doc Show documentation
auto gen doc from api with ui
The newest version!
package cn.mapway.document.module;
/**
* 记录访问次数.
*
* @author zhangjianshe
*/
public class AccessData {
/**
* The count.
*/
public Long count;
/**
* The last.
*/
public Long last;
/**
* Instantiates a new access data.
*/
private AccessData() {
}
/**
* The g access data.
*/
public static AccessData gAccessData;
/**
* Gets the.
*
* @return the access data
*/
public final static AccessData get() {
if (gAccessData == null) {
gAccessData = new AccessData();
}
return gAccessData;
}
}