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

📄 cstlost.java

📁 做的是一个客户关系管理系统
💻 JAVA
字号:
package com.accp.dao;

import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * CstLost generated by MyEclipse Persistence Tools
 */

public class CstLost implements java.io.Serializable {

	// Fields

	private Long lstId;

	private CstCustomer cstCustomer;

	private String lstCustName;

	private Long lstCustManagerId;

	private String lstCustManagerName;

	private Date lstLastOrderDate;

	private Date lstLostDate;

	private String lstDelay;

	private String lstReason;

	private String lstStatus;
	
	private String lstLastOrderDate2;
	private String lstLostDate2;

	// Constructors

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

	/** minimal constructor */
	public CstLost(CstCustomer cstCustomer, Long lstCustManagerId,
			String lstCustManagerName, String lstStatus) {
		this.cstCustomer = cstCustomer;
		this.lstCustManagerId = lstCustManagerId;
		this.lstCustManagerName = lstCustManagerName;
		this.lstStatus = lstStatus;
	}

	/** full constructor */
	public CstLost(CstCustomer cstCustomer, String lstCustName,
			Long lstCustManagerId, String lstCustManagerName,
			Date lstLastOrderDate, Date lstLostDate, String lstDelay,
			String lstReason, String lstStatus) {
		this.cstCustomer = cstCustomer;
		this.lstCustName = lstCustName;
		this.lstCustManagerId = lstCustManagerId;
		this.lstCustManagerName = lstCustManagerName;
		this.lstLastOrderDate = lstLastOrderDate;
		this.lstLostDate = lstLostDate;
		this.lstDelay = lstDelay;
		this.lstReason = lstReason;
		this.lstStatus = lstStatus;
	}

	// Property accessors

	public Long getLstId() {
		return this.lstId;
	}

	public void setLstId(Long lstId) {
		this.lstId = lstId;
	}

	public CstCustomer getCstCustomer() {
		return this.cstCustomer;
	}

	public void setCstCustomer(CstCustomer cstCustomer) {
		this.cstCustomer = cstCustomer;
	}

	public String getLstCustName() {
		return this.lstCustName;
	}

	public void setLstCustName(String lstCustName) {
		this.lstCustName = lstCustName;
	}

	public Long getLstCustManagerId() {
		return this.lstCustManagerId;
	}

	public void setLstCustManagerId(Long lstCustManagerId) {
		this.lstCustManagerId = lstCustManagerId;
	}

	public String getLstCustManagerName() {
		return this.lstCustManagerName;
	}

	public void setLstCustManagerName(String lstCustManagerName) {
		this.lstCustManagerName = lstCustManagerName;
	}

	public Date getLstLastOrderDate() {	
		return lstLastOrderDate;
	}

	public void setLstLastOrderDate(Date lstLastOrderDate) {
		this.lstLastOrderDate = lstLastOrderDate;
	}

	public Date getLstLostDate() {	
		return lstLostDate;
	}

	public void setLstLostDate(Date lstLostDate) {

		this.lstLostDate = lstLostDate;
	}

	public String getLstDelay() {

		return this.lstDelay;
	}

	public void setLstDelay(String lstDelay) {
		this.lstDelay = lstDelay;
	}

	public String getLstReason() {
		return this.lstReason;
	}

	public void setLstReason(String lstReason) {
		this.lstReason = lstReason;
	}

	public String getLstStatus() {
		return this.lstStatus;
	}

	public void setLstStatus(String lstStatus) {
		this.lstStatus = lstStatus;
	}

	public String getLstLastOrderDate2() {
		if (this.lstLastOrderDate != null) {
			java.text.SimpleDateFormat sf = new SimpleDateFormat("yyyy年MM月dd日");
			return sf.format(this.lstLastOrderDate);
		} else {
			return null;
		}
	}

	public String getLstLostDate2() {
		if (this.lstLostDate != null) {
			java.text.SimpleDateFormat sf = new SimpleDateFormat("yyyy年MM月dd日");
			return sf.format(this.lstLostDate);
		} else {
			return null;
		}
	}


}

⌨️ 快捷键说明

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