TOrderOutsourceMapper.java 3.0 KB

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