| | |
| | | import java.math.BigDecimal;
|
| | |
|
| | | public class UserOrderDailyStatisticDTO {
|
| | |
|
| | | private Long uid;
|
| | | private String type;
|
| | | private String day;
|
| | | private int orderCount;
|
| | | private BigDecimal money;
|
| | | public Long getUid() {
|
| | | return uid;
|
| | | }
|
| | | public void setUid(Long uid) {
|
| | | this.uid = uid;
|
| | | }
|
| | | public String getType() {
|
| | | return type;
|
| | | }
|
| | | public void setType(String type) {
|
| | | this.type = type;
|
| | | }
|
| | | public String getDay() {
|
| | | return day;
|
| | | }
|
| | | public void setDay(String day) {
|
| | | this.day = day;
|
| | | }
|
| | | public int getOrderCount() {
|
| | | return orderCount;
|
| | | }
|
| | | public void setOrderCount(int orderCount) {
|
| | | this.orderCount = orderCount;
|
| | | }
|
| | | public BigDecimal getMoney() {
|
| | | return money;
|
| | | }
|
| | | public void setMoney(BigDecimal money) {
|
| | | this.money = money;
|
| | | }
|
| | |
|
| | | }
|