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

📄 mobiledetails.java

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

import java.util.Date;
import java.util.HashSet;
import java.util.Set;

/**
 * MobileDetails generated by MyEclipse Persistence Tools
 */

public class MobileDetails implements java.io.Serializable {

	// Fields

	private Integer id;
	private Factory factory;
	private Date mbirthday;
	private String mstyle;
	private Double mprice;
	private Integer mcount;
	private String mremark;
	private String mpic;
	private Set states = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public MobileDetails(Date mbirthday, String mstyle, Double mprice,
			Integer mcount, String mremark, String mpic) {
		this.mbirthday = mbirthday;
		this.mstyle = mstyle;
		this.mprice = mprice;
		this.mcount = mcount;
		this.mremark = mremark;
		this.mpic = mpic;
	}

	/** full constructor */
	public MobileDetails(Factory factory, Date mbirthday, String mstyle,
			Double mprice, Integer mcount, String mremark, String mpic,
			Set states) {
		this.factory = factory;
		this.mbirthday = mbirthday;
		this.mstyle = mstyle;
		this.mprice = mprice;
		this.mcount = mcount;
		this.mremark = mremark;
		this.mpic = mpic;
		this.states = states;
	}

	// Property accessors

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

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

	public Factory getFactory() {
		return this.factory;
	}

	public void setFactory(Factory factory) {
		this.factory = factory;
	}

	public Date getMbirthday() {
		return this.mbirthday;
	}

	public void setMbirthday(Date mbirthday) {
		this.mbirthday = mbirthday;
	}

	public String getMstyle() {
		return this.mstyle;
	}

	public void setMstyle(String mstyle) {
		this.mstyle = mstyle;
	}

	public Double getMprice() {
		return this.mprice;
	}

	public void setMprice(Double mprice) {
		this.mprice = mprice;
	}

	public Integer getMcount() {
		return this.mcount;
	}

	public void setMcount(Integer mcount) {
		this.mcount = mcount;
	}

	public String getMremark() {
		return this.mremark;
	}

	public void setMremark(String mremark) {
		this.mremark = mremark;
	}

	public String getMpic() {
		return this.mpic;
	}

	public void setMpic(String mpic) {
		this.mpic = mpic;
	}

	public Set getStates() {
		return this.states;
	}

	public void setStates(Set states) {
		this.states = states;
	}

}

⌨️ 快捷键说明

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