call.java

来自「企业办公自动化管理系统」· Java 代码 · 共 47 行

JAVA
47
字号
package com.zh.util;
import java.util.Iterator;
import java.util.Vector;
public class call{
	String dattime;
	String callid;
	String calltest;
	String callremark;
	String operation;
	String result;
	public void setDattime(String newdate){
		this.dattime=newdate;
	}
	public String getDattime(){
		return dattime;
	}
	public void setCallTest(String newcall){
		this.calltest=newcall;
	}
	public String getCallTest(){
		return calltest;
	}
	public void setCallremark(String newremark){
		this.callremark=newremark;
	}
	public String getCallremark(){
		return callremark;
	}
	public void setOperation(String newoption){
		this.operation=newoption;
	}
	public String getOpertion(){
		return operation;
	}
	public void setCallid(String newid){
		this.callid=newid;
	}
	public String getCallid(){
		return callid;
	}
	public void setResult(String newresult){
		this.result=newresult;
	}
	public String getResult(){
		return result;
	}
}

⌨️ 快捷键说明

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