Commit ef3e105f by caosy

退单

parent 1273b075
......@@ -21,7 +21,7 @@ public class BuyVoucherActivityQuery extends AbstractPagedQuery {
private Date createdTimeStart;//
private Date createdTimeEnd;
private Integer buyAndUsed;//是否买了并使用了券1:有效 0失效
private String regionCode; //区域 0-全区域,100-上海 ,110-广州,120-北京
private String regionCode; //区域 1-全区域,100-上海 ,110-广州,120-北京
public Integer getId() {
return id;
......
......@@ -276,8 +276,33 @@ public abstract class AbstractOpOrderBean {
private BigDecimal discountAfterOrderAmount;
/**一种折扣*/
private BigDecimal discountRate;
/**退款按钮是否显示 */
private Integer canRefund;
/**打球时间*/
private Date playDate;
/**订单类型*/
private int orderCategory;
public int getOrderCategory() {
return orderCategory;
}
public void setOrderCategory(int orderCategory) {
this.orderCategory = orderCategory;
}
public long getOrderNo() {
public Date getPlayDate() {
return playDate;
}
public void setPlayDate(Date playDate) {
this.playDate = playDate;
}
public long getOrderNo() {
return orderNo;
}
......@@ -285,7 +310,15 @@ public abstract class AbstractOpOrderBean {
return userName;
}
public Integer getQuantity() {
public Integer getCanRefund() {
return canRefund;
}
public void setCanRefund(Integer canRefund) {
this.canRefund = canRefund;
}
public Integer getQuantity() {
return quantity;
}
......
......@@ -146,6 +146,7 @@ public class CommuneExtBean implements java.io.Serializable {
private String renewer;
/**标签*/
private String labels;
public Integer getId() {
......
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