|
|
@ -3,6 +3,8 @@ package com.hai.model; |
|
|
|
import com.hai.entity.HighAgent; |
|
|
|
import com.hai.entity.HighAgent; |
|
|
|
import com.hai.entity.HighCoupon; |
|
|
|
import com.hai.entity.HighCoupon; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @Auther: 胡锐 |
|
|
|
* @Auther: 胡锐 |
|
|
|
* @Description: |
|
|
|
* @Description: |
|
|
@ -18,6 +20,18 @@ public class HighCouponAgentRelModel { |
|
|
|
//代理商信息
|
|
|
|
//代理商信息
|
|
|
|
private HighAgent highAgent; |
|
|
|
private HighAgent highAgent; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 未使用数量
|
|
|
|
|
|
|
|
private Integer noUsedNum; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 未使用金额
|
|
|
|
|
|
|
|
private BigDecimal noUsedPrice; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 使用数量
|
|
|
|
|
|
|
|
private Integer usedNum; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 使用金额
|
|
|
|
|
|
|
|
private BigDecimal usedPrice; |
|
|
|
|
|
|
|
|
|
|
|
public String getMerchantLogo() { |
|
|
|
public String getMerchantLogo() { |
|
|
|
return merchantLogo; |
|
|
|
return merchantLogo; |
|
|
|
} |
|
|
|
} |
|
|
@ -41,4 +55,36 @@ public class HighCouponAgentRelModel { |
|
|
|
public void setHighAgent(HighAgent highAgent) { |
|
|
|
public void setHighAgent(HighAgent highAgent) { |
|
|
|
this.highAgent = highAgent; |
|
|
|
this.highAgent = highAgent; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getNoUsedNum() { |
|
|
|
|
|
|
|
return noUsedNum; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setNoUsedNum(Integer noUsedNum) { |
|
|
|
|
|
|
|
this.noUsedNum = noUsedNum; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BigDecimal getNoUsedPrice() { |
|
|
|
|
|
|
|
return noUsedPrice; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setNoUsedPrice(BigDecimal noUsedPrice) { |
|
|
|
|
|
|
|
this.noUsedPrice = noUsedPrice; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getUsedNum() { |
|
|
|
|
|
|
|
return usedNum; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setUsedNum(Integer usedNum) { |
|
|
|
|
|
|
|
this.usedNum = usedNum; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BigDecimal getUsedPrice() { |
|
|
|
|
|
|
|
return usedPrice; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setUsedPrice(BigDecimal usedPrice) { |
|
|
|
|
|
|
|
this.usedPrice = usedPrice; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|