admin
2020-04-15 ee5c8055b1c0dd7c67a9025a76b10bd287c93d9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.yeshi.fanli.dao.mybatis.money;
 
import java.util.Date;
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.money.TeamEincomeRecord;
 
public interface TeamEincomeRecordMapper extends BaseMapper<TeamEincomeRecord> {
 
    TeamEincomeRecord selectByUidAndPreRecieveTimeAndType(@Param("uid") Long uid,
            @Param("preRecieveTime") Date preRecieveTime, @Param("type") int type);
 
    TeamEincomeRecord selectByPrimaryKeyForUpdate(Long id);
 
    List<TeamEincomeRecord> listByUidAndPreRecieveTimeAndState(@Param("uid") Long uid,
            @Param("preRecieveTime") Date preRecieveTime, @Param("state") int state);
}