guidelinedatafor37group.java

来自「解析特定16进制文件」· Java 代码 · 共 156 行

JAVA
156
字号
package com.datangmobile.oss.omc.pc.util;
/**
 * Copyright (c) 2006 Datang Mobile Co.Ltd
 * All right reserved.
 */


import java.io.Serializable;
import java.util.Date;

/**
 * 网元上报的指标数据
 * 
 * @version 3.0
 * @since 2006-8-9
 */
public class GuideLineDataFor37Group implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = -6732412817637579179L;

	/**
	 * key
	 */
	private long id;

	/**
	 * 网元dn
	 */
	private String dn;

	/**
	 * 指标的名值对
	 */
	private Double[] values;

	/**
	 * 开始时间
	 */
	private Date begin;

	/**
	 * 结束时间
	 */
	private Date end;

	/**
	 * 表示数据是否有效,可用.no persistent
	 */
	private boolean usable = true;

	private int counterGroupId;

	/**
	 * @return Returns the counterGroupId.
	 */
	public int getCounterGroupId() {
		return counterGroupId;
	}

	/**
	 * @param counterGroupId
	 *            The counterGroupId to set.
	 */
	public void setCounterGroupId(int counterGroupId) {
		this.counterGroupId = counterGroupId;
	}

	/**
	 * @return Returns the dn.
	 */
	public String getDn() {
		return dn;
	}

	/**
	 * @param dn
	 *            The dn to set.
	 */
	public void setDn(String dn) {
		this.dn = dn;
	}


	/**
	 * @return Returns the begin.
	 */
	public Date getBegin() {
		return begin;
	}

	/**
	 * @param begin
	 *            The begin to set.
	 */
	public void setBegin(Date begin) {
		this.begin = begin;
	}

	/**
	 * @return Returns the end.
	 */
	public Date getEnd() {
		return end;
	}

	/**
	 * @param end
	 *            The end to set.
	 */
	public void setEnd(Date end) {
		this.end = end;
	}

	/**
	 * @return Returns the usable.
	 */
	public boolean isUsable() {
		return usable;
	}

	/**
	 * @param usable
	 *            The usable to set.
	 */
	public void setUsable(boolean usable) {
		this.usable = usable;
	}

	/**
	 * @return Returns the id.
	 */
	public long getId() {
		return id;
	}

	/**
	 * @param id
	 *            The id to set.
	 */
	public void setId(long id) {
		this.id = id;
	}

	public Double[] getValues() {
		return values;
	}

	public void setValues(Double[] values) {
		this.values = values;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?