StaticDaily.java 1.54 KB
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
package com.fadu.jeefw.model.sys;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import java.io.Serializable;

/**
 * app日活统计
 * @author Chris
 *
 */
@Entity
public class StaticDaily implements Serializable {

	private static final long serialVersionUID = 1L;
	
	@Id
	@GeneratedValue
	private Long id;
	
	@Column
	private String staticDate;//统计日期 2016-01-01
	
	@Column
	private int num;//数量
	
	@Column
	private int dailyType;	// 类型 1:注册律师日活
							//11:律师注册数;12:律师申请数;13:律师通过数
							//21:ssdb查询次数(所有);22:ssdb查询次数(注册);23:ssdb申请次数
	
	@Column
	private String moduleName;// 模块名称
	
	@Column
	private String pageName;// 页面名称

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getStaticDate() {
		return staticDate;
	}

	public void setStaticDate(String staticDate) {
		this.staticDate = staticDate;
	}

	public int getNum() {
		return num;
	}

	public void setNum(int num) {
		this.num = num;
	}

	public int getDailyType() {
		return dailyType;
	}

	public void setDailyType(int dailyType) {
		this.dailyType = dailyType;
	}

	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;
	}
	
}