You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
891 B
52 lines
891 B
package com.hai.model;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
public class OutOrderModel {
|
|
private Date day;
|
|
|
|
private Long count;
|
|
|
|
/**
|
|
* 支付金额
|
|
*/
|
|
private BigDecimal payPrice;
|
|
|
|
/**
|
|
* 订单充值金额
|
|
*/
|
|
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;
|
|
}
|
|
}
|
|
|