| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.zsElectric.boot.app.model.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.zsElectric.boot.common.base.BaseEntity;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- /**
- * 账户汇总实体
- *
- * @author boxun
- * @since 2024-08-01
- */
- @TableName("c_accounts_summary")
- @Getter
- @Setter
- public class AccountsSummary extends BaseEntity {
- /**
- * 汇总日期
- */
- private String summaryDate;
- /**
- * 用户总数
- */
- private Integer userCount;
- /**
- * 总余额
- */
- private BigDecimal totalBalance;
- /**
- * 总充值
- */
- private BigDecimal totalRecharge;
- /**
- * 总消费
- */
- private BigDecimal totalCost;
- /**
- * 备注
- */
- private String remark;
- /**
- * 创建人ID
- */
- private Long createBy;
- /**
- * 更新人ID
- */
- private Long updateBy;
- }
|