Commit 4d353a0a by caosy

置换卷

parent 26bd21a5
...@@ -9,7 +9,7 @@ public class VoucherGiftQuery extends AbstractPagedQuery{ ...@@ -9,7 +9,7 @@ public class VoucherGiftQuery extends AbstractPagedQuery{
/** /**
* *
*/ */
private static final long serialVersionUID = -5874854787742050433L; private static final long serialVersionUID = 5874854787742050433L;
private Integer id; private Integer id;
......
...@@ -7,7 +7,7 @@ public class VoucherGiftVo implements Serializable{ ...@@ -7,7 +7,7 @@ public class VoucherGiftVo implements Serializable{
/** /**
* *
*/ */
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 2577358588222153067L;
/** /**
* 主键 * 主键
......
...@@ -40,7 +40,8 @@ public class AbstractOrderListItemBean { ...@@ -40,7 +40,8 @@ public class AbstractOrderListItemBean {
private String teeTime; private String teeTime;
private Integer isConfirm; private Integer isConfirm;
private BigDecimal PrePayAmount; private BigDecimal PrePayAmount;
private Integer orderCategory;
public Integer getOrderType() { public Integer getOrderType() {
return orderType; return orderType;
} }
...@@ -226,5 +227,13 @@ public class AbstractOrderListItemBean { ...@@ -226,5 +227,13 @@ public class AbstractOrderListItemBean {
PrePayAmount = prePayAmount; PrePayAmount = prePayAmount;
} }
public Integer getOrderCategory() {
return orderCategory;
}
public void setOrderCategory(Integer orderCategory) {
this.orderCategory = orderCategory;
}
} }
...@@ -316,6 +316,10 @@ public class UserBean implements Serializable { ...@@ -316,6 +316,10 @@ public class UserBean implements Serializable {
*/ */
private Integer userWorkerId; private Integer userWorkerId;
/**
* 是否是销售 1 是 0 不是
*/
private Integer isSales;
public Integer getUserWorkerId() { public Integer getUserWorkerId() {
return userWorkerId; return userWorkerId;
...@@ -927,4 +931,12 @@ public class UserBean implements Serializable { ...@@ -927,4 +931,12 @@ public class UserBean implements Serializable {
this.hobby = hobby; this.hobby = hobby;
} }
public Integer getIsSales() {
return isSales;
}
public void setIsSales(Integer isSales) {
this.isSales = isSales;
}
} }
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