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.
30 lines
504 B
30 lines
504 B
package com.hai.model;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
public class OrderSumModel {
|
|
/**
|
|
* 时间
|
|
*/
|
|
private Date datetime;
|
|
|
|
// 金额
|
|
private BigDecimal price;
|
|
|
|
public Date getDatetime() {
|
|
return datetime;
|
|
}
|
|
|
|
public void setDatetime(Date datetime) {
|
|
this.datetime = datetime;
|
|
}
|
|
|
|
public BigDecimal getPrice() {
|
|
return price;
|
|
}
|
|
|
|
public void setPrice(BigDecimal price) {
|
|
this.price = price;
|
|
}
|
|
}
|
|
|