AccountsSummary.java 931 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.zsElectric.boot.app.model.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.zsElectric.boot.common.base.BaseEntity;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. import java.math.BigDecimal;
  7. /**
  8. * 账户汇总实体
  9. *
  10. * @author boxun
  11. * @since 2024-08-01
  12. */
  13. @TableName("c_accounts_summary")
  14. @Getter
  15. @Setter
  16. public class AccountsSummary extends BaseEntity {
  17. /**
  18. * 汇总日期
  19. */
  20. private String summaryDate;
  21. /**
  22. * 用户总数
  23. */
  24. private Integer userCount;
  25. /**
  26. * 总余额
  27. */
  28. private BigDecimal totalBalance;
  29. /**
  30. * 总充值
  31. */
  32. private BigDecimal totalRecharge;
  33. /**
  34. * 总消费
  35. */
  36. private BigDecimal totalCost;
  37. /**
  38. * 备注
  39. */
  40. private String remark;
  41. /**
  42. * 创建人ID
  43. */
  44. private Long createBy;
  45. /**
  46. * 更新人ID
  47. */
  48. private Long updateBy;
  49. }