infoshowvo.java

来自「基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰」· Java 代码 · 共 51 行

JAVA
51
字号
package com.yuanchung.sales.vo.service;

public class InfoShowVo {
	String custInfo = "";//联系人信息
	String otherInfo = "";//其它信息
	String assignInfo = "";//指派信息
	String sourceInfo = "";//过程信息
	String visitInfo = "";//回访问信息
	
	public InfoShowVo(){
		
	}
	public InfoShowVo(String custInfo,String otherInfo,String assignInfo,String sourceInfo,String visitInfo){
		this.custInfo = custInfo;
		this.otherInfo = otherInfo;
		this.assignInfo = assignInfo;
		this.sourceInfo = sourceInfo;
		this.visitInfo = visitInfo;
	}
	public String getCustInfo() {
		return custInfo;
	}
	public void setCustInfo(String custInfo) {
		this.custInfo = custInfo;
	}
	public String getOtherInfo() {
		return otherInfo;
	}
	public void setOtherInfo(String otherInfo) {
		this.otherInfo = otherInfo;
	}
	public String getSourceInfo() {
		return sourceInfo;
	}
	public void setSourceInfo(String sourceInfo) {
		this.sourceInfo = sourceInfo;
	}
	public String getVisitInfo() {
		return visitInfo;
	}
	public void setVisitInfo(String visitInfo) {
		this.visitInfo = visitInfo;
	}
	public String getAssignInfo() {
		return assignInfo;
	}
	public void setAssignInfo(String assignInfo) {
		this.assignInfo = assignInfo;
	}
}

⌨️ 快捷键说明

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