JtVoucherMapper.java 2.8 KB

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