admin
2019-01-16 e477968929ab57da9b1b3c309b487b4f9fd606ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.yeshi.fanli.dao.mybatis.msg;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.bus.msg.MsgMoneyDetail;
import com.yeshi.fanli.entity.bus.msg.MsgMoneyDetail.MsgTypeMoneyTypeEnum;
 
public interface MsgMoneyDetailMapper extends BaseMapper<MsgMoneyDetail> {
 
    MsgMoneyDetail selectBySourceIdAndMsgType(@Param("sourceId") Long sourceId,
            @Param("type") MsgTypeMoneyTypeEnum type);
 
    List<MsgMoneyDetail> listByUid(@Param("uid") Long uid, @Param("start") long start, @Param("count") int count);
 
    Long countByUid(@Param("uid") Long uid);
}