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

📄 callbean.java

📁 oa rar it is the jsp
💻 JAVA
字号:
package com.accp.oa.bean;

import java.io.Serializable;


/**
 * 这个Java bean用于存储回访记录的值
 * @author zhaogenfei
 *
 */
public class Callbean implements Serializable{
	//回访记录表id
	private int id;
	//采购表
	private int stcokaddID;
	//回访日期
	private String callDate;
	//回访内容
	private String callConent;
	//回访结果
	private String callResult;
	//问题备注
	private String problemResult;

	public Callbean() {
	}

	public String getCallConent() {
		return callConent;
	}

	public void setCallConent(String callConent) {
		this.callConent = callConent;
	}

	public String getCallDate() {
		return callDate;
	}

	public void setCallDate(String callDate) {
		this.callDate = callDate;
	}

	public String getCallResult() {
		return callResult;
	}

	public void setCallResult(String callResult) {
		this.callResult = callResult;
	}

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getProblemResult() {
		return problemResult;
	}

	public void setProblemResult(String problemResult) {
		this.problemResult = problemResult;
	}

	public int getStcokaddID() {
		return stcokaddID;
	}

	public void setStcokaddID(int stcokaddID) {
		this.stcokaddID = stcokaddID;
	}
}

⌨️ 快捷键说明

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