orderinfo.java

来自「一套自己原先在学校作的CRM,大家指点下」· Java 代码 · 共 118 行

JAVA
118
字号
package com.crm.pojo;

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

/**
 * OrderInfo generated by MyEclipse Persistence Tools
 */

public class OrderInfo implements java.io.Serializable {

	// Fields

	/**
	 * 
	 */
	private static final long serialVersionUID = 5932606685273030365L;

	private Integer orderId;

	private Client client=new Client();

	private String orderTime="";

	private String orderAddress;

	private String orderState;

	private Double orderHavingMoney;

	private Set orderLists = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public OrderInfo(Client client, String orderTime, String orderAddress,
			String orderState, Double orderHavingMoney) {
		this.client = client;
		this.orderTime = orderTime;
		this.orderAddress = orderAddress;
		this.orderState = orderState;
		this.orderHavingMoney = orderHavingMoney;
	}

	/** full constructor */
	public OrderInfo(Client client, String orderTime, String orderAddress,
			String orderState, Double orderHavingMoney, Set orderLists) {
		this.client = client;
		this.orderTime = orderTime;
		this.orderAddress = orderAddress;
		this.orderState = orderState;
		this.orderHavingMoney = orderHavingMoney;
		this.orderLists = orderLists;
	}

	// Property accessors

	public Integer getOrderId() {
		return this.orderId;
	}

	public void setOrderId(Integer orderId) {
		this.orderId = orderId;
	}

	public Client getClient() {
		return this.client;
	}

	public void setClient(Client client) {
		this.client = client;
	}

	public String getOrderTime() {
		return this.orderTime;
	}

	public void setOrderTime(String orderTime) {
		this.orderTime = orderTime;
	}

	public String getOrderAddress() {
		return this.orderAddress;
	}

	public void setOrderAddress(String orderAddress) {
		this.orderAddress = orderAddress;
	}

	public String getOrderState() {
		return this.orderState;
	}

	public void setOrderState(String orderState) {
		this.orderState = orderState;
	}

	public Double getOrderHavingMoney() {
		return this.orderHavingMoney;
	}

	public void setOrderHavingMoney(Double orderHavingMoney) {
		this.orderHavingMoney = orderHavingMoney;
	}

	public Set getOrderLists() {
		return this.orderLists;
	}

	public void setOrderLists(Set orderLists) {
		this.orderLists = orderLists;
	}

}

⌨️ 快捷键说明

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