package com.dy.pipIrrGlobal.daoSe; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoSe.SeWebchatLogonState; import org.apache.ibatis.annotations.Mapper; /** * @author ZhuBaoMin * @date 2024-02-22 17:31 * @LastEditTime 2024-02-22 17:31 * @Description */ @Mapper public interface SeWebchatLogonStateMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(SeWebchatLogonState record); int insertSelective(SeWebchatLogonState record); SeWebchatLogonState selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(SeWebchatLogonState record); int updateByPrimaryKey(SeWebchatLogonState record); }