admin
2019-10-25 733281fcb5f1ab01e1196b542b7e07b49b3e44c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yeshi.fanli.dao.mybatis.money;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.money.UserBalance;
 
public interface UserBalanceMapper extends BaseMapper<UserBalance> {
    
    /**
     * 根据用户id查询
     * @param uid
     * @return
     */
    UserBalance getByUid(Long uid);
}