dupengyue
2017-03-10 b3635dde3e5ca9485212aa67dbb6ceb96cba873a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.com.basic.face.discern.baseApi.mapper.sys;
 
import cn.com.basic.face.discern.baseApi.entity.sys.UserCreditInfo;
import cn.com.basic.face.discern.baseApi.entity.sys.UserCreditInfoQuery;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface UserCreditInfoDao {
    int countByExample(UserCreditInfoQuery example);
 
    int deleteByExample(UserCreditInfoQuery example);
 
    int insert(UserCreditInfo record);
 
    int insertSelective(UserCreditInfo record);
 
    List<UserCreditInfo> selectByExample(UserCreditInfoQuery example);
 
    int updateByExampleSelective(@Param("record") UserCreditInfo record, @Param("example") UserCreditInfoQuery example);
 
    int updateByExample(@Param("record") UserCreditInfo record, @Param("example") UserCreditInfoQuery example);
}