admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
fanli/src/main/java/com/yeshi/fanli/service/inter/money/UserMoneyDetailService.java
@@ -33,7 +33,7 @@
    * @param maxTime
    * @return
    */
   public List<UserMoneyDetailHistoryVO> listUserMoneyDetailForClient(Long uid, Long userMoneyDetailId, Date maxTime);
   public List<UserMoneyDetailHistoryVO> listUserMoneyDetailForClient(Long uid, Long userMoneyDetailId, Integer type, Date maxTime);
   /**
    * 客户端查询用户的资金记录的条数(计算月统计)
@@ -43,7 +43,7 @@
    * @param maxTime
    * @return
    */
   public long countUserMoneyDetailForClient(Long uid, Long userMoneyDetailId, Date maxTime);
   public long countUserMoneyDetailForClient(Long uid, Long userMoneyDetailId,Integer type, Date maxTime);
   /**
    * 资金明细详情列表(老版本)
@@ -87,4 +87,15 @@
   public UserMoneyDetail selectByTypeAndUidAndIdentifyCode(UserMoneyDetailTypeEnum type, Long uid,
         Long sourceIdentifyId);
   /**
    * 查询明细统计
    * @param page
    * @param pageSize
    * @param key
    * @return
    */
   public List<UserMoneyDetail> listQuery(int page, int pageSize, String key, Integer keyType);
   public long countQuery(String key, Integer keyType);
}