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

📄 lost.java

📁 主要实现管理客户以及客户信息和其公司的服务管理
💻 JAVA
字号:
package entity;

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

/**
 * Lost generated by MyEclipse Persistence Tools
 */

public class Lost implements java.io.Serializable {

	// Fields

	private Integer lostId;

	private Customers customers;

	private Date lostLastOrderDatetime;

	private Date lostDatetime;

	private String lostCause;

	private Integer lostStatus=1;

	private Set measures = new HashSet(0);
	
	private String pageNo ="1";
	private String maxResults = "5";
	private String cuscondition;
	private String mancondition;
	private String status = "1";
	List condition;

	// Constructors

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

	/** full constructor */
	public Lost(Customers customers, Date lostLastOrderDatetime,
			Date lostDatetime, String lostCause, Integer lostStatus,
			Set measures) {
		this.customers = customers;
		this.lostLastOrderDatetime = lostLastOrderDatetime;
		this.lostDatetime = lostDatetime;
		this.lostCause = lostCause;
		this.lostStatus = lostStatus;
		this.measures = measures;
	}

	// Property accessors

	public Integer getLostId() {
		return this.lostId;
	}

	public void setLostId(Integer lostId) {
		this.lostId = lostId;
	}

	public Customers getCustomers() {
		return this.customers;
	}

	public void setCustomers(Customers customers) {
		this.customers = customers;
	}

	public Date getLostLastOrderDatetime() {
		return this.lostLastOrderDatetime;
	}

	public void setLostLastOrderDatetime(Date lostLastOrderDatetime) {
		this.lostLastOrderDatetime = lostLastOrderDatetime;
	}

	public Date getLostDatetime() {
		return this.lostDatetime;
	}

	public void setLostDatetime(Date lostDatetime) {
		this.lostDatetime = lostDatetime;
	}

	public String getLostCause() {
		return this.lostCause;
	}

	public void setLostCause(String lostCause) {
		this.lostCause = lostCause;
	}

	public Integer getLostStatus() {
		return this.lostStatus;
	}

	public void setLostStatus(Integer lostStatus) {
		this.lostStatus = lostStatus;
	}

	public Set getMeasures() {
		return this.measures;
	}

	public void setMeasures(Set measures) {
		this.measures = measures;
	}

	public String getMaxResults() {
		return maxResults;
	}

	public void setMaxResults(String maxResults) {
		this.maxResults = maxResults;
	}

	public String getPageNo() {
		return pageNo;
	}

	public void setPageNo(String pageNo) {
		this.pageNo = pageNo;
	}

	public String getCuscondition() {
		return cuscondition;
	}

	public void setCuscondition(String cuscondition) {
		this.cuscondition = cuscondition;
	}

	public String getMancondition() {
		return mancondition;
	}

	public void setMancondition(String mancondition) {
		this.mancondition = mancondition;
	}

	public String getStatus() {
		return status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public List<Customers> getCondition() {
		return condition;
	}

	public void setCondition(List<Customers> condition) {
		this.condition = condition;
	}

}

⌨️ 快捷键说明

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