VuserActMapper.java 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.js.kbt.mapper;
  2. import com.js.kbt.model.VuserAct;
  3. import com.js.kbt.model.VuserActExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface VuserActMapper {
  7. /**
  8. * This method was generated by MyBatis Generator.
  9. * This method corresponds to the database table vuser_act
  10. *
  11. * @mbggenerated Fri Nov 10 14:58:13 CST 2017
  12. */
  13. int countByExample(VuserActExample example);
  14. /**
  15. * This method was generated by MyBatis Generator.
  16. * This method corresponds to the database table vuser_act
  17. *
  18. * @mbggenerated Fri Nov 10 14:58:13 CST 2017
  19. */
  20. int deleteByExample(VuserActExample example);
  21. /**
  22. * This method was generated by MyBatis Generator.
  23. * This method corresponds to the database table vuser_act
  24. *
  25. * @mbggenerated Fri Nov 10 14:58:13 CST 2017
  26. */
  27. int insert(VuserAct record);
  28. /**
  29. * This method was generated by MyBatis Generator.
  30. * This method corresponds to the database table vuser_act
  31. *
  32. * @mbggenerated Fri Nov 10 14:58:13 CST 2017
  33. */
  34. int insertSelective(VuserAct record);
  35. /**
  36. * This method was generated by MyBatis Generator.
  37. * This method corresponds to the database table vuser_act
  38. *
  39. * @mbggenerated Fri Nov 10 14:58:13 CST 2017
  40. */
  41. List<VuserAct> selectByExample(VuserActExample example);
  42. /**
  43. * This method was generated by MyBatis Generator.
  44. * This method corresponds to the database table vuser_act
  45. *
  46. * @mbggenerated Fri Nov 10 14:58:13 CST 2017
  47. */
  48. int updateByExampleSelective(@Param("record") VuserAct record, @Param("example") VuserActExample example);
  49. /**
  50. * This method was generated by MyBatis Generator.
  51. * This method corresponds to the database table vuser_act
  52. *
  53. * @mbggenerated Fri Nov 10 14:58:13 CST 2017
  54. */
  55. int updateByExample(@Param("record") VuserAct record, @Param("example") VuserActExample example);
  56. }