AppStaticsBean.java 757 Bytes
Newer Older
xucl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
package com.fadu.app.bean.other;

import java.io.Serializable;

/**
 * 统计
 * 
 * @author Chris
 * 
 */
public class AppStaticsBean implements Serializable {
	
	private static final long serialVersionUID = 1L;
	
	private String moduleName;// 模块名称
	
	private String pageName;// 页面名称

	private long createDate;// 点击时间
	
	public String getModuleName() {
		return moduleName;
	}

	public void setModuleName(String moduleName) {
		this.moduleName = moduleName;
	}

	public String getPageName() {
		return pageName;
	}

	public void setPageName(String pageName) {
		this.pageName = pageName;
	}

	public long getCreateDate() {
		return createDate;
	}

	public void setCreateDate(long createDate) {
		this.createDate = createDate;
	}

}