| | |
| | | package com.taoke.autopay.dao.credit; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import lombok.Builder; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import com.taoke.autopay.entity.credit.UserCreditRecord; |
| | | import org.yeshi.utils.mybatis.BaseMapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | @Repository |
| | | public interface UserCreditRecordMapper extends BaseMapper<UserCreditRecord> { |
| | | |
| | | UserCreditRecord selectByPrimaryKeyForUpdate(@Param("id") Long id); |
| | |
| | | |
| | | long count(@Param("query") DaoQuery query); |
| | | |
| | | @Builder |
| | | public static class DaoQuery { |
| | | public Long id; |
| | | public Long uid; |