Merge branch 'dev' of http://139.159.177.244:3000/hurui/hai-server into dev
commit
54bd4110a7
@ -0,0 +1,53 @@ |
||||
package com.bweb.model; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
public class ExportOutRechargeOrderCount { |
||||
|
||||
@ExcelProperty("时间") |
||||
private Date day; |
||||
|
||||
@ExcelProperty("数量") |
||||
private Long count; |
||||
|
||||
@ExcelProperty("支付金额") |
||||
private BigDecimal payPrice; |
||||
|
||||
@ExcelProperty("充值金额") |
||||
private BigDecimal orderPrice; |
||||
|
||||
public Date getDay() { |
||||
return day; |
||||
} |
||||
|
||||
public void setDay(Date day) { |
||||
this.day = day; |
||||
} |
||||
|
||||
public Long getCount() { |
||||
return count; |
||||
} |
||||
|
||||
public void setCount(Long count) { |
||||
this.count = count; |
||||
} |
||||
|
||||
public BigDecimal getPayPrice() { |
||||
return payPrice; |
||||
} |
||||
|
||||
public void setPayPrice(BigDecimal payPrice) { |
||||
this.payPrice = payPrice; |
||||
} |
||||
|
||||
public BigDecimal getOrderPrice() { |
||||
return orderPrice; |
||||
} |
||||
|
||||
public void setOrderPrice(BigDecimal orderPrice) { |
||||
this.orderPrice = orderPrice; |
||||
} |
||||
} |
@ -0,0 +1,42 @@ |
||||
package com.bweb.model; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
public class ExportOutRechargeUserOrderCount { |
||||
|
||||
@ExcelProperty("员工名称") |
||||
private String agentName; |
||||
|
||||
@ExcelProperty("数量") |
||||
private Long count; |
||||
|
||||
@ExcelProperty("支付金额") |
||||
private BigDecimal payPrice; |
||||
|
||||
public String getAgentName() { |
||||
return agentName; |
||||
} |
||||
|
||||
public void setAgentName(String agentName) { |
||||
this.agentName = agentName; |
||||
} |
||||
|
||||
public Long getCount() { |
||||
return count; |
||||
} |
||||
|
||||
public void setCount(Long count) { |
||||
this.count = count; |
||||
} |
||||
|
||||
public BigDecimal getPayPrice() { |
||||
return payPrice; |
||||
} |
||||
|
||||
public void setPayPrice(BigDecimal payPrice) { |
||||
this.payPrice = payPrice; |
||||
} |
||||
} |
@ -0,0 +1,40 @@ |
||||
package com.hai.model; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
public class OutUserOrderModel { |
||||
private String agentName; |
||||
|
||||
private Long count; |
||||
|
||||
/** |
||||
* 支付金额 |
||||
*/ |
||||
private BigDecimal payPrice; |
||||
|
||||
|
||||
public String getAgentName() { |
||||
return agentName; |
||||
} |
||||
|
||||
public void setAgentName(String agentName) { |
||||
this.agentName = agentName; |
||||
} |
||||
|
||||
public Long getCount() { |
||||
return count; |
||||
} |
||||
|
||||
public void setCount(Long count) { |
||||
this.count = count; |
||||
} |
||||
|
||||
public BigDecimal getPayPrice() { |
||||
return payPrice; |
||||
} |
||||
|
||||
public void setPayPrice(BigDecimal payPrice) { |
||||
this.payPrice = payPrice; |
||||
} |
||||
} |
Loading…
Reference in new issue