ScDemandMapper.java 2.8 KB

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