⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cent.java

📁 由Spring + Sturts + hibernate + ajax 写的手机销售系统
💻 JAVA
字号:
package com.mpss.entity;

/**
 * Cent generated by MyEclipse Persistence Tools
 */

public class Cent implements java.io.Serializable {

	// Fields

	private Integer id;
	private Users users;
	private Double totalconsume;
	private Integer cent;

	// Constructors

	/** default constructor */
	public Cent() {
	}

	/** minimal constructor */
	public Cent(Double totalconsume, Integer cent) {
		this.totalconsume = totalconsume;
		this.cent = cent;
	}

	/** full constructor */
	public Cent(Users users, Double totalconsume, Integer cent) {
		this.users = users;
		this.totalconsume = totalconsume;
		this.cent = cent;
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

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

	public Users getUsers() {
		return this.users;
	}

	public void setUsers(Users users) {
		this.users = users;
	}

	public Double getTotalconsume() {
		return this.totalconsume;
	}

	public void setTotalconsume(Double totalconsume) {
		this.totalconsume = totalconsume;
	}

	public Integer getCent() {
		return this.cent;
	}

	public void setCent(Integer cent) {
		this.cent = cent;
	}

}

⌨️ 快捷键说明

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