webchartdata.java

来自「本文论述了一个前台笔记本销售系统的开发过程」· Java 代码 · 共 64 行

JAVA
64
字号
package com.set.utils;

/**
 * <p>
 * Title: 代码生成框架
 * </p>
 * <p>
 * Description:
 * </p>
 * <p>
 * Copyright: Copyright (c) 2005
 * </p>
 * <p>
 * Company:
 * </p>
 * 
 * @author not attributable
 * @version 1.0
 */

public class WebChartData {

	private double apeakValue; // 垂直轴上的值

	private String groupValue; // 组值

	private String levelValue; // 水平轴上的值

	public WebChartData() {
		//
	}

	public WebChartData(double apeakValue, String groupValue, String levelValue) {
		this.apeakValue = apeakValue;
		this.groupValue = groupValue;
		this.levelValue = levelValue;
	}

	public double getApeakValue() {
		return this.apeakValue;
	}

	public void setApeakValue(double apeakValue) {
		this.apeakValue = apeakValue;
	}

	public String getGroupValue() {
		return this.groupValue;
	}

	public void setGroupValue(String groupValue) {
		this.groupValue = groupValue;
	}

	public String getLevelValue() {
		return this.levelValue;
	}

	public void setLevelValue(String levelValue) {
		this.levelValue = levelValue;
	}

}

⌨️ 快捷键说明

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