zhubaomin
2025-04-17 1e69d160cb1e04b1438db0ca950dd5c15088619d
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoBa/BaCaptchaMapper.java
New file
@@ -0,0 +1,36 @@
package com.dy.pipIrrGlobal.daoBa;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoBa.BaCaptcha;
import org.apache.ibatis.annotations.Mapper;
import java.util.Map;
/**
 * @author ZhuBaoMin
 * @date 2024-09-11 10:58
 * @LastEditTime 2024-09-11 10:58
 * @Description
 */
@Mapper
public interface BaCaptchaMapper extends BaseMapper {
    int deleteByPrimaryKey(Long id);
    int insert(BaCaptcha record);
    int insertSelective(BaCaptcha record);
    BaCaptcha selectByPrimaryKey(Long id);
    int updateByPrimaryKeySelective(BaCaptcha record);
    int updateByPrimaryKey(BaCaptcha record);
    /**
     * 依据验证码token获取验证字符
     * @param token
     * @return
     */
    Map getCodeByToken(String token);
}