IUserAuthMapper.java 782 B

1234567891011121314151617181920212223242526
  1. package com.fdkankan.openApi.mapper.system;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.fdkankan.openApi.entity.system.UserAuthInfo;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.stereotype.Component;
  7. /**
  8. * <p>
  9. * Mapper 接口
  10. * </p>
  11. *
  12. * @author
  13. * @since 2023年2月10日14:38:33
  14. */
  15. @Mapper
  16. @Component("IUserAuthMapper")
  17. public interface IUserAuthMapper extends BaseMapper<UserAuthInfo> {
  18. int updateCallCounts(@Param("appKey") String appKey);
  19. int updateCallCountsByParam(@Param("appKey") String appKey, @Param("count") Integer count);
  20. int updateCallCountsByParamAndType(@Param("appKey") String appKey, @Param("count") Integer count, @Param("type") Integer type);
  21. }