1234567891011121314151617181920212223242526 |
- package com.fdkankan.openApi.mapper.system;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.fdkankan.openApi.entity.system.UserAuthInfo;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Component;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author
- * @since 2023年2月10日14:38:33
- */
- @Mapper
- @Component("IUserAuthMapper")
- public interface IUserAuthMapper extends BaseMapper<UserAuthInfo> {
- int updateCallCounts(@Param("appKey") String appKey);
- int updateCallCountsByParam(@Param("appKey") String appKey, @Param("count") Integer count);
- int updateCallCountsByParamAndType(@Param("appKey") String appKey, @Param("count") Integer count, @Param("type") Integer type);
- }
|