1
zj
2024-06-13 8eea5be3b36875bd4ffe70e6c3a5bb07b1d829bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.yami.trading.dao.user;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yami.trading.bean.model.FollowMoneyLog;
import com.yami.trading.bean.user.dto.SumBSalanceDto;
import org.apache.ibatis.annotations.Param;
 
import java.util.Date;
import java.util.List;
 
public interface FollowMoneyLogMapper extends BaseMapper<FollowMoneyLog> {
 
 
   Page pageMoneyLog(Page page, @Param("userCode") String userId,
                     @Param("rolename")  String rolename, @Param("startTime") Date startTime,
                     @Param("endTime") Date endTime,
                     @Param("userName") String userName,
                     @Param("log") String log,@Param("category") String category,
                     @Param("userIds") List<String> userIds);
 
   SumBSalanceDto sumBSalance(@Param("category") String category,
                              @Param("contentType") String contentType,
                              @Param("userId") String userId,
                              @Param("nowTime") Date now);//2222
}