Commit d7d7136a by caosy

add the miss the file

parent df96fb77
...@@ -35,7 +35,18 @@ public class Response <T> { ...@@ -35,7 +35,18 @@ public class Response <T> {
this.body = body; this.body = body;
} }
@Override public Response(int status, String message, T body) {
super();
this.status = status;
this.message = message;
this.body = body;
}
public Response() {
super();
}
@Override
public String toString() { public String toString() {
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
builder.append("status: ").append(status) builder.append("status: ").append(status)
......
...@@ -20,6 +20,7 @@ public class SmsBean implements java.io.Serializable { ...@@ -20,6 +20,7 @@ public class SmsBean implements java.io.Serializable {
private Long messageId; private Long messageId;
private Date dataChangeLastTime; private Date dataChangeLastTime;
private int sendTimes; private int sendTimes;
private String mobileNos;
private int type; private int type;
private String operator; private String operator;
...@@ -62,7 +63,15 @@ public class SmsBean implements java.io.Serializable { ...@@ -62,7 +63,15 @@ public class SmsBean implements java.io.Serializable {
this.mobileNo = mobileNo; this.mobileNo = mobileNo;
} }
public Long getMessageId() { public String getMobileNos() {
return mobileNos;
}
public void setMobileNos(String mobileNos) {
this.mobileNos = mobileNos;
}
public Long getMessageId() {
return messageId; return messageId;
} }
......
...@@ -15,6 +15,7 @@ import java.util.List; ...@@ -15,6 +15,7 @@ import java.util.List;
public class RecordScoreVO { public class RecordScoreVO {
private String uid; private String uid;
private int gameId; private int gameId;
private Integer matchId;
private List<ScoreBean> scores = new ArrayList<ScoreBean>(); private List<ScoreBean> scores = new ArrayList<ScoreBean>();
/** /**
...@@ -60,4 +61,14 @@ public class RecordScoreVO { ...@@ -60,4 +61,14 @@ public class RecordScoreVO {
public void setGameId(int gameId) { public void setGameId(int gameId) {
this.gameId = gameId; this.gameId = gameId;
} }
public Integer getMatchId() {
return matchId;
}
public void setMatchId(Integer matchId) {
this.matchId = matchId;
}
} }
...@@ -56,6 +56,7 @@ public class EventActivityOrderListExcelBean extends EventActivityOrderListBean ...@@ -56,6 +56,7 @@ public class EventActivityOrderListExcelBean extends EventActivityOrderListBean
private BigDecimal communeMinus; private BigDecimal communeMinus;
private BigDecimal communeGuestPrice; private BigDecimal communeGuestPrice;
private BigDecimal communeGuestMinus; private BigDecimal communeGuestMinus;
private BigDecimal floorPrice;
/** /**
* 实付金额 * 实付金额
*/ */
...@@ -241,6 +242,14 @@ public class EventActivityOrderListExcelBean extends EventActivityOrderListBean ...@@ -241,6 +242,14 @@ public class EventActivityOrderListExcelBean extends EventActivityOrderListBean
this.insuranceAmount = insuranceAmount; this.insuranceAmount = insuranceAmount;
} }
public BigDecimal getFloorPrice() {
return floorPrice;
}
public void setFloorPrice(BigDecimal floorPrice) {
this.floorPrice = floorPrice;
}
public List<CustomerInfoBean> getCustomerInfos() { public List<CustomerInfoBean> getCustomerInfos() {
return customerInfos; return customerInfos;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment