package com.dy.pipIrrGlobal.daoVi; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoVi.ViYsApp; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * @Author: liurunyu * @Date: 2025/6/7 10:44 * @Description */ @Mapper public interface ViYsAppMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int deleteAll(); int insert(ViYsApp record); int insertSelective(ViYsApp record); ViYsApp selectByPrimaryKey(Long id); List selectAll(); int updateByPrimaryKeySelective(ViYsApp record); int updateByPrimaryKey(ViYsApp record); }