| | |
| | | public long countCanSettle(Long uid);
|
| | |
|
| | |
|
| | | /**
|
| | | * 能够结算的用户ID列表
|
| | | * @Title: listCanSettleUid
|
| | | * @Description: |
| | | * @param page
|
| | | * @param count
|
| | | * @return |
| | | * List<Long> 返回类型
|
| | | * @throws
|
| | | */
|
| | | public List<Long> listCanSettleUid(Date time, int page,int count);
|
| | | |
| | | |
| | | /**
|
| | | * 能够结算的用户ID数量
|
| | | * @Title: countCanSettleUid
|
| | | * @Description: |
| | | * @return |
| | | * long 返回类型
|
| | | * @throws
|
| | | */
|
| | | public long countCanSettleUid(Date time);
|
| | |
|
| | | |
| | | /**
|
| | | * 统计用户有效金额
|
| | | * @param uid
|
| | | * @param day 1今日 2昨日 3本月 4上月
|
| | | * @param level
|
| | | * @return
|
| | | */
|
| | | public BigDecimal sumValidMoneyByUidAndDate(long uid, Integer day, Integer level);
|
| | | |
| | | /**
|
| | | * 统计用户已到账金额
|
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public BigDecimal sumRecievedMoneyByUid(long uid, Integer level);
|
| | | |
| | | |
| | | }
|