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