package com.newfiber.api.pc.dao.EventsManage; import com.newfiber.api.pc.model.EventsManage.BoundaryTablet; import com.newfiber.api.pc.model.EventsManage.BoundaryTabletQuery; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface BoundaryTabletDao { int countByExample(BoundaryTabletQuery example); int deleteByExample(BoundaryTabletQuery example); int insertSelective(BoundaryTablet record); List<BoundaryTablet> selectByExample(BoundaryTabletQuery example); int updateByExampleSelective(@Param("record") BoundaryTablet record, @Param("example") BoundaryTabletQuery example); }