zhubaomin
2025-04-15 e4aa9db5e3c91c969adf2361f8069b8c54244e1a
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeOpenIdMapper.java
New file
@@ -0,0 +1,27 @@
package com.dy.pipIrrGlobal.daoSe;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoSe.SeOpenId;
import org.apache.ibatis.annotations.Mapper;
/**
 * @author ZhuBaoMin
 * @date 2024-05-28 21:04
 * @LastEditTime 2024-05-28 21:04
 * @Description
 */
@Mapper
public interface SeOpenIdMapper extends BaseMapper<SeOpenId> {
    int deleteByPrimaryKey(Long id);
    int insert(SeOpenId record);
    int insertSelective(SeOpenId record);
    SeOpenId selectByPrimaryKey(Long id);
    int updateByPrimaryKeySelective(SeOpenId record);
    int updateByPrimaryKey(SeOpenId record);
}