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.
29 lines
444 B
29 lines
444 B
package com.hai.model;
|
|
|
|
import java.util.Date;
|
|
|
|
public class DateCountModel {
|
|
/**
|
|
* 时间
|
|
*/
|
|
private Date datetime;
|
|
|
|
// 金额
|
|
private Long num;
|
|
|
|
public Date getDatetime() {
|
|
return datetime;
|
|
}
|
|
|
|
public void setDatetime(Date datetime) {
|
|
this.datetime = datetime;
|
|
}
|
|
|
|
public Long getNum() {
|
|
return num;
|
|
}
|
|
|
|
public void setNum(Long num) {
|
|
this.num = num;
|
|
}
|
|
}
|
|
|