Purchase.java
3.04 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
* Copyright (c) 2015 www.diligrp.com All rights reserved.
* 本软件源代码版权归----所有,未经许可不得任意复制与传播.
*/
package com.dili.titan.domain.gq;
import java.util.Date;
/**
* purchase
* @author dev-center
* @since 2015-07-24
*/
public class Purchase {
private Long id;
private String title;
private String userName;
private Long categoryId;
private Long producingAreaId;
private Long localityAreaId;
private Integer count;
private Integer unitId;
private String phone;
private Date expireTime;
private Integer status;
private Long userId;
private Integer source;
private String reason;
private Date ctime;
private String utime;
public Purchase(){
//默认无参构造方法
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public Long getCategoryId() {
return categoryId;
}
public void setCategoryId(Long categoryId) {
this.categoryId = categoryId;
}
public Long getLocalityAreaId() {
return localityAreaId;
}
public void setLocalityAreaId(Long localityAreaId) {
this.localityAreaId = localityAreaId;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getUnitId() {
return unitId;
}
public void setUnitId(Integer unitId) {
this.unitId = unitId;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public Date getExpireTime() {
return expireTime;
}
public void setExpireTime(Date expireTime) {
this.expireTime = expireTime;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public Integer getSource() {
return source;
}
public void setSource(Integer source) {
this.source = source;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public Date getCtime() {
return ctime;
}
public void setCtime(Date ctime) {
this.ctime = ctime;
}
public String getUtime() {
return utime;
}
public void setUtime(String utime) {
this.utime = utime;
}
public Long getProducingAreaId() {
return producingAreaId;
}
public void setProducingAreaId(Long producingAreaId) {
this.producingAreaId = producingAreaId;
}
}