JtVoucherDetailMapper.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.JtVoucherDetail;
  3. import com.goafanti.common.model.JtVoucherDetailExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface JtVoucherDetailMapper {
  7. /**
  8. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  9. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  10. */
  11. long countByExample(JtVoucherDetailExample example);
  12. /**
  13. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  14. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  15. */
  16. int deleteByExample(JtVoucherDetailExample example);
  17. /**
  18. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  19. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  20. */
  21. int deleteByPrimaryKey(String id);
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  24. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  25. */
  26. int insert(JtVoucherDetail record);
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  29. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  30. */
  31. int insertSelective(JtVoucherDetail record);
  32. /**
  33. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  34. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  35. */
  36. List<JtVoucherDetail> selectByExample(JtVoucherDetailExample example);
  37. /**
  38. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  39. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  40. */
  41. JtVoucherDetail selectByPrimaryKey(String id);
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  44. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  45. */
  46. int updateByExampleSelective(@Param("record") JtVoucherDetail record,
  47. @Param("example") JtVoucherDetailExample example);
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  50. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  51. */
  52. int updateByExample(@Param("record") JtVoucherDetail record, @Param("example") JtVoucherDetailExample example);
  53. /**
  54. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  55. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  56. */
  57. int updateByPrimaryKeySelective(JtVoucherDetail record);
  58. /**
  59. * This method was generated by MyBatis Generator. This method corresponds to the database table jt_voucher_detail
  60. * @mbg.generated Tue Oct 16 15:59:34 CST 2018
  61. */
  62. int updateByPrimaryKey(JtVoucherDetail record);
  63. List<String> getTokenVoucher(String uid);
  64. }