enterqianbean.java.svn-base

来自「公司CRM部分原代码,采用的是java技术.」· SVN-BASE 代码 · 共 53 行

SVN-BASE
53
字号
package first;

import java.sql.*;

public class EnterQianBean {
//Connection conn=null;
public static EnterQianBean ent;

String followType =null;
String auditorName = null;


//private int stationFollow;
private int count;
//private int countQi ;
//private int latentEnterprise;

private EnterQianBean() {}
public static EnterQianBean getEnterQianBean() {
	ent = new EnterQianBean();
	return ent;
}

public String getFollowTypee()
{
  return this.followType;
}
public void setFollowType(String auditorName)
{
  this.auditorName=auditorName;
}
public String getAuditorName()
{
  return this.auditorName;
}
public void setAuditorName(String auditorName)
{
  this.auditorName=auditorName;
}


public int getCount()
{
  return this.count;
}
public void setCount(int count)
{
  this.count=count;
}

	 
}

⌨️ 快捷键说明

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