parent
d1792fa55b
commit
14eade9413
@ -0,0 +1,44 @@ |
|||||||
|
package com.hai.model; |
||||||
|
|
||||||
|
import com.hai.entity.HighAgent; |
||||||
|
import com.hai.entity.HighDiscount; |
||||||
|
import com.hai.entity.HighOrder; |
||||||
|
|
||||||
|
/** |
||||||
|
* 优惠券码 |
||||||
|
*/ |
||||||
|
public class HighDiscountAgentCodeModel { |
||||||
|
|
||||||
|
// 代理商
|
||||||
|
private HighAgent highAgent; |
||||||
|
|
||||||
|
// 优惠券
|
||||||
|
private HighDiscount highDiscount; |
||||||
|
|
||||||
|
// 订单
|
||||||
|
private HighOrder highOrder; |
||||||
|
|
||||||
|
public HighAgent getHighAgent() { |
||||||
|
return highAgent; |
||||||
|
} |
||||||
|
|
||||||
|
public void setHighAgent(HighAgent highAgent) { |
||||||
|
this.highAgent = highAgent; |
||||||
|
} |
||||||
|
|
||||||
|
public HighDiscount getHighDiscount() { |
||||||
|
return highDiscount; |
||||||
|
} |
||||||
|
|
||||||
|
public void setHighDiscount(HighDiscount highDiscount) { |
||||||
|
this.highDiscount = highDiscount; |
||||||
|
} |
||||||
|
|
||||||
|
public HighOrder getHighOrder() { |
||||||
|
return highOrder; |
||||||
|
} |
||||||
|
|
||||||
|
public void setHighOrder(HighOrder highOrder) { |
||||||
|
this.highOrder = highOrder; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue