LocationCreateRequestVO.java
1.42 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.xiniunet.erp.hr.request;
import com.xiniunet.foundation.request.LocationCreateRequest;
import com.xiniunet.framework.base.BaseRequest;
/**
 * Created on 2014/9/23.
 *
 * @author 吕浩
 * @version v1.0.0.0
 */
public class LocationCreateRequestVO extends BaseRequest {
	/**
	 * 主键,
	 */
	private  Long   id;
	/**
	 * 地址简称,
	 */
	private  String   name;
	/**
	 * 是否有效,
	 */
	private  Boolean   isActive = false;
	/**
	 * 是否可以发货,
	 */
	private  Boolean   isShipping = false;
	/**
	 * 是否可以收货,
	 */
	private  Boolean   isReceiving = false;
	/**
	 * 位置信息
	 */
	private LocationCreateRequest location;
	public Long getId() {
		return id;
	}
	public void setId(Long id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public Boolean getIsActive() {
		return isActive;
	}
	public void setIsActive(Boolean isActive) {
		this.isActive = isActive;
	}
	public Boolean getIsShipping() {
		return isShipping;
	}
	public void setIsShipping(Boolean isShipping) {
		this.isShipping = isShipping;
	}
	public Boolean getIsReceiving() {
		return isReceiving;
	}
	public void setIsReceiving(Boolean isReceiving) {
		this.isReceiving = isReceiving;
	}
	public LocationCreateRequest getLocation() {
		return location;
	}
	public void setLocation(LocationCreateRequest location) {
		this.location = location;
	}
}