cstlostreptform.java

来自「本系统基本完善了CRM管理系统的各个模块」· Java 代码 · 共 54 行

JAVA
54
字号
package com.accp.struts.form;

import java.util.Date;

public class CstLostReptForm {
	// 客户流失
	private Long lstId;
	private String custName;
	private String lstCustManagerName;
	private Date lstLostDate;
	private String lstReason;

	public Long getLstId() {
		return lstId;
	}

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

	public String getCustName() {
		return custName;
	}

	public void setCustName(String custName) {
		this.custName = custName;
	}

	public String getLstCustManagerName() {
		return lstCustManagerName;
	}

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


	public Date getLstLostDate() {
		return lstLostDate;
	}

	public void setLstLostDate(Date lstLostDate) {
		this.lstLostDate = lstLostDate;
	}

	public String getLstReason() {
		return lstReason;
	}

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

⌨️ 快捷键说明

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