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; /** *

* Mapper 接口 *

* * @author * @since 2023年2月10日14:38:33 */ @Mapper @Component("IUserAuthMapper") public interface IUserAuthMapper extends BaseMapper { 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); }