footballteam.java

来自「个人理财系统-fileutil的使用 是你的好帮手」· Java 代码 · 共 44 行

JAVA
44
字号
package ar.com.koalas.test;

public class FootballTeam {
	private String idCountry;
	private String idTeam;
	private String team;
	/**
	 * @return Returns the idCountry.
	 */
	public String getIdCountry() {
		return idCountry;
	}
	/**
	 * @param idCountry The idCountry to set.
	 */
	public void setIdCountry(String idCountry) {
		this.idCountry = idCountry;
	}
	/**
	 * @return Returns the idTeam.
	 */
	public String getIdTeam() {
		return idTeam;
	}
	/**
	 * @param idTeam The idTeam to set.
	 */
	public void setIdTeam(String idTeam) {
		this.idTeam = idTeam;
	}
	/**
	 * @return Returns the team.
	 */
	public String getTeam() {
		return team;
	}
	/**
	 * @param team The team to set.
	 */
	public void setTeam(String team) {
		this.team = team;
	}
}

⌨️ 快捷键说明

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