|
|
@@ -21,6 +21,25 @@ public class SelectMyUserOut {
|
|
|
private String locationProvinceName;
|
|
|
private String locationCityName;
|
|
|
private String locationAreaName;
|
|
|
+ private Integer awardsStatus;
|
|
|
+ private Date awardsTime;
|
|
|
+
|
|
|
+ public Integer getAwardsStatus() {
|
|
|
+ return awardsStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAwardsStatus(Integer awardsStatus) {
|
|
|
+ this.awardsStatus = awardsStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd",timezone="GMT+8")
|
|
|
+ public Date getAwardsTime() {
|
|
|
+ return awardsTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAwardsTime(Date awardsTime) {
|
|
|
+ this.awardsTime = awardsTime;
|
|
|
+ }
|
|
|
|
|
|
public Integer getLocationProvince() {
|
|
|
return locationProvince;
|