LocationVO.java
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.xiniunet.erp.hr.response;
import com.xiniunet.foundation.domain.Location;
import com.xiniunet.framework.base.BaseResponse;
/**
 * Created on 2014/9/18.
 *
 * @author 吕浩
 * @version v1.0.0.0
 */
public class LocationVO extends BaseResponse {
	/**
	 * 完整的地址信息
	 */
	private Location fullLocation;
	/**
	 * 完整的地址信息
	 */
	private String locationPath;
	/**
	 * 页面要管理的位置功能信息
	 */
	private com.xiniunet.master.domain.humanresource.Location location;
	public String getLocationPath() {
		return locationPath;
	}
	public void setLocationPath(String locationPath) {
		this.locationPath = locationPath;
	}
	public Location getFullLocation() {
		return fullLocation;
	}
	public void setFullLocation(Location location) {
		this.fullLocation = location;
	}
	public com.xiniunet.master.domain.humanresource.Location getLocation() {
		return location;
	}
	public void setLocation(com.xiniunet.master.domain.humanresource.Location location) {
		this.location = location;
	}
}