dev-discount
parent
d05f1ada46
commit
ea6dd840cf
@ -0,0 +1,85 @@ |
||||
package com.hai.model; |
||||
|
||||
import com.hai.entity.HighOrder; |
||||
|
||||
public class HighOrderData extends HighOrder { |
||||
|
||||
|
||||
/** |
||||
* 子订单id |
||||
*/ |
||||
private Long childOrderId; |
||||
|
||||
/** |
||||
* 区域ID |
||||
*/ |
||||
private Long companyId; |
||||
|
||||
/** |
||||
* 商户ID |
||||
*/ |
||||
private Long merchantId; |
||||
|
||||
/** |
||||
* 门店ID |
||||
*/ |
||||
private Long storeId; |
||||
|
||||
/** |
||||
* 订单ID |
||||
*/ |
||||
private Long orderId; |
||||
|
||||
/** |
||||
* 商品类型 1:卡卷 2.充值 |
||||
*/ |
||||
private Integer goodsType; |
||||
|
||||
public Long getChildOrderId() { |
||||
return childOrderId; |
||||
} |
||||
|
||||
public void setChildOrderId(Long childOrderId) { |
||||
this.childOrderId = childOrderId; |
||||
} |
||||
|
||||
public Long getCompanyId() { |
||||
return companyId; |
||||
} |
||||
|
||||
public void setCompanyId(Long companyId) { |
||||
this.companyId = companyId; |
||||
} |
||||
|
||||
public Long getMerchantId() { |
||||
return merchantId; |
||||
} |
||||
|
||||
public void setMerchantId(Long merchantId) { |
||||
this.merchantId = merchantId; |
||||
} |
||||
|
||||
public Long getStoreId() { |
||||
return storeId; |
||||
} |
||||
|
||||
public void setStoreId(Long storeId) { |
||||
this.storeId = storeId; |
||||
} |
||||
|
||||
public Long getOrderId() { |
||||
return orderId; |
||||
} |
||||
|
||||
public void setOrderId(Long orderId) { |
||||
this.orderId = orderId; |
||||
} |
||||
|
||||
public Integer getGoodsType() { |
||||
return goodsType; |
||||
} |
||||
|
||||
public void setGoodsType(Integer goodsType) { |
||||
this.goodsType = goodsType; |
||||
} |
||||
} |
Loading…
Reference in new issue