display.java.svn-base
来自「公司CRM部分原代码,采用的是java技术.」· SVN-BASE 代码 · 共 78 行
SVN-BASE
78 行
package first;
import java.sql.*;
public class Display {
//Connection conn=null;
public static Display display;
String followType =null;
String auditorName = null;
private int stationFollow;
private int countCi ;
private int countQi ;
private int latentEnterprise;
private Display() {}
public static Display getDisplay() {
display = new Display();
return display;
}
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 getStationFollow()
{
return this.stationFollow;
}
public void setStationFollow(int stationFollow)
{
this.stationFollow=stationFollow;
}
public int getCountCi()
{
return this.countCi;
}
public void setCountCi(int countCi)
{
this.countCi=countCi;
}
public int getCountQi()
{
return this.countQi;
}
public void setCountQi(int countQi)
{
this.countQi=countQi;
}
public int getLatentEnterprise()
{
return this.latentEnterprise;
}
public void setLatentEnterprise(int latentEnterprise)
{
this.latentEnterprise=latentEnterprise;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?