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

📄 location.java

📁 This is a project used to find a corresondin location from place
💻 JAVA
字号:
package com.horizongroup.mcompanion.web.model;

public class Location {

		private String name;
		private String description;
		private String speciality;
		private int addressId;
		
public Location()
{
}
		
		public int getAddressId() {
			return addressId;
		}
		
		public void setAddressId(int addressId) {
			this.addressId = addressId;
		}
		
		public String getDescription() {
			return description;
		}
		
		public void setDescription(String description) {
			this.description = description;
		}
		
		public String getName() {
			return name;
		}
		
		public void setName(String name) {
			this.name = name;
		}
		
		public String getSpeciality() {
			return speciality;
		}
		
		public void setSpeciality(String speciality) {
			this.speciality = speciality;
		}
public Location(String name,String description,String speciality,int addressId){
	super();
		this.name = name;
		this.description = description;
		this.speciality = speciality;
		this.addressId = addressId;
	}
		
}

⌨️ 快捷键说明

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