123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- 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<TbFactory> 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);
- }
|