MonthStat.java 1016 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.kym.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.kym.entity.BaseEntity;
  4. import java.io.Serializable;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. /**
  8. * <p>
  9. * 日统计表
  10. * </p>
  11. *
  12. * @author skyline
  13. * @since 2025-04-03
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_month_stat")
  18. public class MonthStat extends BaseEntity {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 统计年月2025-01
  22. */
  23. private String statMonth;
  24. /**
  25. * 站点ID
  26. */
  27. private String stationId;
  28. /**
  29. * 总收入(分)
  30. */
  31. private Integer totalIncome;
  32. /**
  33. * 跨店收入(分)
  34. */
  35. private Integer crossIncome;
  36. /**
  37. * 跨店支出(分)
  38. */
  39. private Integer crossExpend;
  40. /**
  41. * 本店消费金额(分)
  42. */
  43. private Integer consumption;
  44. /**
  45. * 注册用户数量
  46. */
  47. private Integer registrations;
  48. /**
  49. * 订单数量
  50. */
  51. private Integer ordersCount;
  52. }