接口 BaseService<T,T2>


public interface BaseService<T,T2>
抽象类BaseService
作者:
fuce
  • 方法详细资料

    • deleteByPrimaryKey

      int deleteByPrimaryKey(String id)
    • insertSelective

      int insertSelective(T record)
    • selectByPrimaryKey

      T selectByPrimaryKey(String id)
    • updateByPrimaryKeySelective

      int updateByPrimaryKeySelective(T record)
    • updateByExampleSelective

      int updateByExampleSelective(@Param("record") T record, @Param("example") T2 example)
    • updateByExample

      int updateByExample(@Param("record") T record, @Param("example") T2 example)
    • selectByExample

      List<T> selectByExample(T2 example)
    • countByExample

      long countByExample(T2 example)
    • deleteByExample

      int deleteByExample(T2 example)