package com.js.kbt.mapper; import com.js.kbt.model.TbFactory; import com.js.kbt.model.TbFactoryExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface TbFactoryMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ long countByExample(TbFactoryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ int deleteByExample(TbFactoryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ int insert(TbFactory record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ int insertSelective(TbFactory record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ List selectByExample(TbFactoryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ TbFactory selectByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ int updateByExampleSelective(@Param("record") TbFactory record, @Param("example") TbFactoryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ int updateByExample(@Param("record") TbFactory record, @Param("example") TbFactoryExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ int updateByPrimaryKeySelective(TbFactory record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table tb_factory * * @mbg.generated Mon Aug 05 15:03:49 CST 2019 */ int updateByPrimaryKey(TbFactory record); }