userself.java

来自「电信计费项目 该系统在Sun Solaris下开发,运行于Apache Tom」· Java 代码 · 共 94 行

JAVA
94
字号
package com.tarena.netctoss.model.biz.entity;import java.io.Serializable;import java.sql.*;public class UserSelf implements Serializable{	private static final long serialVersionUID = 4171710343406991244L;		private String login_name;	private String lab_ip;	private String pricing_name;	private Date logout_date;	private double monthtime;	private double time_duration;	private double base_fee;	private double rate_fee;	private int user_status;	private Long user_id;		public Long getUser_id() {		return user_id;	}	public void setUser_id(Long user_id) {		this.user_id = user_id;	}	public int getUser_status() {		return user_status;	}	public void setUser_status(int user_status) {		this.user_status = user_status;	}	public UserSelf() {		super();	}		public double getBase_fee() {		return base_fee;	}	public void setBase_fee(double base_fee) {		this.base_fee = base_fee;	}	public double getRate_fee() {		return rate_fee;	}	public void setRate_fee(double rate_fee) {		this.rate_fee = rate_fee;	}		public String getLab_ip() {		return lab_ip;	}	public void setLab_ip(String lab_ip) {		this.lab_ip = lab_ip;	}	public Date getLogout_date() {		return logout_date;	}	public void setLogout_dates(String logout_date){		this.logout_date = Date.valueOf(logout_date);	}	public void setLogout_date(Date logout_date) {		this.logout_date = logout_date;	}	public double getMonthtime() {		return monthtime;	}	public void setMonthtime(double monthtime) {		this.monthtime = monthtime;	}	public String getLogin_name() {		return login_name;	}	public void setLogin_name(String login_name) {		this.login_name = login_name;	}	public String getPricing_name() {		return pricing_name;	}	public void setPricing_name(String pricing_name) {		this.pricing_name = pricing_name;	}	public double getTime_duration() {		return time_duration;	}	public void setTime_duration(double time_duration) {		this.time_duration = time_duration;	}}

⌨️ 快捷键说明

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