servreckon.java

来自「java电信经典-学习例子源代码」· Java 代码 · 共 95 行

JAVA
95
字号
/**
 * @author tiantian
 *
 * Jun 10, 2008 10:42:54 AM
 */
package netctoss.jdbc.entities;

import java.io.Serializable;

import java.util.*;

public class ServReckon implements Serializable {
	private String loginname;		//业务帐号
	private String labip;			//实验室ip
	private double duration;		//登录时长
	private int priceid;			//资费ID
	private String pricename;		//资费名称
	private double fee;				//费用
	private double basefee;
	private double ratefee;
	private Date logouttime;
	public ServReckon(){
		
	}
	
	public double getBasefee() {
		return basefee;
	}

	public void setBasefee(double basefee) {
		this.basefee = basefee;
	}

	public double getRatefee() {
		return ratefee;
	}

	public void setRatefee(double ratefee) {
		this.ratefee = ratefee;
	}

	public String getPricename() {
		return pricename;
	}

	public void setPricename(String pricename) {
		this.pricename = pricename;
	}

	public String getLoginname() {
		return loginname;
	}
	public void setLoginname(String loginname) {
		this.loginname = loginname;
	}
	public String getLabip() {
		return labip;
	}
	public void setLabip(String labip) {
		this.labip = labip;
	}
	
	public int getPriceid() {
		return priceid;
	}
	public void setPriceid(int priceid) {
		this.priceid = priceid;
	}
	
	public Date getLogouttime() {
		return logouttime;
	}

	public void setLogouttime(Date logouttime) {
		this.logouttime = logouttime;
	}

	public double getDuration() {
		return duration;
	}
	public void setDuration(double duration) {
		this.duration = duration;
	}
	
	public double getFee() {
		return fee;
	}
	public void setFee(double fee) {
		this.fee = fee;
	}
	
	
	
}

⌨️ 快捷键说明

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