parent
6ca6db38fd
commit
99abf6bf97
@ -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; |
||||||
|
} |
||||||
|
} |
@ -1,4 +1,4 @@ |
|||||||
fileUrl=/home/project/hsg/filesystem |
fileUrl=D:\\filesystem |
||||||
cmsPath=/home/project/hsg/filesystem/cmsPath |
cmsPath=/home/project/hsg/filesystem/cmsPath |
||||||
agentQrCode=/home/project/hsg/filesystem/agentQrCode |
agentQrCode=/home/project/hsg/filesystem/agentQrCode |
||||||
agentQrCodeWxUrl=https://hsgcs.dctpay.com/wx/?action=gogogo&id= |
agentQrCodeWxUrl=https://hsgcs.dctpay.com/wx/?action=gogogo&id= |
||||||
|
@ -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