package pwc.taxtech.atms.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyMapper; import pwc.taxtech.atms.entitiy.Industry; import pwc.taxtech.atms.entitiy.IndustryExample; @Mapper public interface IndustryMapper extends MyMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ long countByExample(IndustryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ int deleteByExample(IndustryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ int deleteByPrimaryKey(String ID); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ int insert(Industry record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ int insertSelective(Industry record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ List<Industry> selectByExampleWithRowbounds(IndustryExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ List<Industry> selectByExample(IndustryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ Industry selectByPrimaryKey(String ID); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ int updateByExampleSelective(@Param("record") Industry record, @Param("example") IndustryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ int updateByExample(@Param("record") Industry record, @Param("example") IndustryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ int updateByPrimaryKeySelective(Industry record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table Industry * * @mbg.generated */ int updateByPrimaryKey(Industry record); List<Industry> getAllAvailableIndustry(); }