Newer
Older
huludao / src / main / java / com / newfiber / api / pc / dao / EventsManage / BoundaryTabletDao.java
@新烽开发者 新烽开发者 on 22 Jul 698 bytes init
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);

}