| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.kym.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.kym.entity.BaseEntity;
- import java.io.Serializable;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- * 日统计表
- * </p>
- *
- * @author skyline
- * @since 2025-04-03
- */
- @Getter
- @Setter
- @TableName("t_month_stat")
- public class MonthStat extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 统计年月2025-01
- */
- private String statMonth;
- /**
- * 站点ID
- */
- private String stationId;
- /**
- * 总收入(分)
- */
- private Integer totalIncome;
- /**
- * 跨店收入(分)
- */
- private Integer crossIncome;
- /**
- * 跨店支出(分)
- */
- private Integer crossExpend;
- /**
- * 本店消费金额(分)
- */
- private Integer consumption;
- /**
- * 注册用户数量
- */
- private Integer registrations;
- /**
- * 订单数量
- */
- private Integer ordersCount;
- }
|