| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- package com.cyksj.model.views;
- import com.cyksj.model.entity.*;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- import java.util.List;
- /*
- *项目名: netflix
- *文件名: NetflixDataViews
- *创建者: JavaZou
- *创建时间:2022/10/17 14:09
- * 数据统计展示类
- */
- @Setter
- @Getter
- public class BackgroundDataView {
- /**
- * 今日访问数
- */
- private Integer activeNumOfUser;
- /**
- * 总下单用户数
- */
- private Integer totalNumOfUser;
- /**
- * 总订单数
- */
- private Integer totalNumOfOrder;
- /**
- * 总订单金额
- */
- private BigDecimal totalOrderAmount;
- /**
- * 退款单数
- */
- private Integer totalNumOfRefundOrder;
- /**
- * 退款金额
- */
- private BigDecimal totalRefundAmount;
- /**
- * 退款余额
- */
- private BigDecimal totalRefundBalance;
- /**
- * 近5天将要到期的主账号总数
- */
- private Integer totalNumOfWillExpireAccount;
- /**
- * 已到期主账号总数
- */
- private Integer totalExpiredAccountNum;
- /**
- * 虚拟订单数
- */
- private Integer virtualNumOfOrder;
- /**
- * 虚拟订单金额
- */
- private BigDecimal virtualAccountOfOrder;
- /**
- * 实物订单数
- */
- private Integer realGoodsNumOfOrder;
- /**
- * 实物订单金额
- */
- private BigDecimal realGoodsAccountOfOrder;
- /**
- * 潮玩好物订单数
- */
- private Integer fashionNumOfOrder;
- /**
- * 潮玩好物订单金额
- */
- private BigDecimal fashionAccountOfOrder;
- /**
- * 分销单数
- */
- private Integer distributeOrders;
- /**
- * 固定推广者分销单数
- */
- private Integer distributePopularizeOrders;
- /**
- * 普通分销单数
- */
- private Integer distributeOriginalOrders;
- /**
- * 固定推广者分销金额
- */
- private BigDecimal distributePopularizeMoney;
- /**
- * 普通分销金额
- */
- private BigDecimal distributeOriginalMoney;
- /**
- * 已提现分销金额
- */
- private BigDecimal distributeGotMoney;
- /**
- * 待审核提现分销金额
- */
- private BigDecimal distributeVerifyingMoney;
- /**
- * 待注册账号数
- */
- private Integer waitingRegisterNum;
- /**
- * 注册失败账号数
- */
- private Integer failRegisterNum;
- /**
- * apple one数据
- */
- private List<AppleOneData> appleOneDataViews;
- /**
- * 流媒体账号数据
- */
- private List<StreamingAccountData> streamAccountDataViews;
- /**
- * 实物数据
- */
- private List<RealGoodsData> realGoodsDataViews;
- /**
- * 潮玩好物数据
- */
- private List<StatisticsFashionGoodsData> fashionGoodsDataViews;
- /**
- * 注册账号数据
- */
- private List<RegisterAccountData> registerAccountDataViews;
- /**
- * netflix月付车队数
- */
- private Integer numOfMonthNetflix;
- /**
- * 空车位数
- */
- private Integer numOfMonthEmptyRelationNetflix;
- /**
- * 空车队数
- */
- private Integer numOfMonthEmptyTripsNetflix;
- /**
- * 待发货实物订单
- */
- private Integer waitingSendRealOrder;
- /**
- * 已使用余额
- */
- private BigDecimal usedBalance;
- /**
- * 剩余余额
- */
- private BigDecimal remainBalance;
- /**
- * 店铺数量
- */
- private Integer numOfYhShop;
- /**
- * 小店注册人数
- */
- private Integer numOfYhShopRegisterUser;
- /**
- * 店铺销售单数
- */
- private Integer numOfYhShopDsOrders;
- /**
- * 店铺销售金额
- */
- private BigDecimal yhShopAmount;
- /**
- * 店铺提成金额
- */
- private BigDecimal yhShopTakeMoney;
- /**
- * 私域当日金额
- */
- private BigDecimal privatelyOrderMoney;
- }
|