12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.js.kbt.mapper;
- import com.js.kbt.model.VorderCount;
- import com.js.kbt.model.VorderCountExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface VorderCountMapper {
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table vorder_count
- *
- * @mbggenerated Fri Nov 10 15:24:40 CST 2017
- */
- int countByExample(VorderCountExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table vorder_count
- *
- * @mbggenerated Fri Nov 10 15:24:40 CST 2017
- */
- int deleteByExample(VorderCountExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table vorder_count
- *
- * @mbggenerated Fri Nov 10 15:24:40 CST 2017
- */
- int insert(VorderCount record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table vorder_count
- *
- * @mbggenerated Fri Nov 10 15:24:40 CST 2017
- */
- int insertSelective(VorderCount record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table vorder_count
- *
- * @mbggenerated Fri Nov 10 15:24:40 CST 2017
- */
- List<VorderCount> selectByExample(VorderCountExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table vorder_count
- *
- * @mbggenerated Fri Nov 10 15:24:40 CST 2017
- */
- int updateByExampleSelective(@Param("record") VorderCount record, @Param("example") VorderCountExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table vorder_count
- *
- * @mbggenerated Fri Nov 10 15:24:40 CST 2017
- */
- int updateByExample(@Param("record") VorderCount record, @Param("example") VorderCountExample example);
- }
|