SysCbitErrorMapper.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. package com.ydtech.modules.admin.dao;
  2. import com.ydtech.modules.admin.model.SysCbitError;
  3. import com.ydtech.modules.admin.model.SysCbitErrorExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.stereotype.Repository;
  7. @Repository
  8. public interface SysCbitErrorMapper {
  9. /**
  10. * description:countByExample
  11. *
  12. * @author: gws
  13. * @date: 2021-11-26
  14. * @since: 1.0
  15. */
  16. long countByExample(SysCbitErrorExample example);
  17. /**
  18. * description:deleteByExample
  19. *
  20. * @author: gws
  21. * @date: 2021-11-26
  22. * @since: 1.0
  23. */
  24. int deleteByExample(SysCbitErrorExample example);
  25. /**
  26. * description:deleteByPrimaryKey
  27. *
  28. * @author: gws
  29. * @date: 2021-11-26
  30. * @since: 1.0
  31. */
  32. int deleteByPrimaryKey(String reqno);
  33. /**
  34. * description:insert
  35. *
  36. * @author: gws
  37. * @date: 2021-11-26
  38. * @since: 1.0
  39. */
  40. int insert(SysCbitError record);
  41. /**
  42. * description:insertSelective
  43. *
  44. * @author: gws
  45. * @date: 2021-11-26
  46. * @since: 1.0
  47. */
  48. int insertSelective(SysCbitError record);
  49. /**
  50. * description:selectByExampleWithBLOBs
  51. *
  52. * @author: gws
  53. * @date: 2021-11-26
  54. * @since: 1.0
  55. */
  56. List<SysCbitError> selectByExampleWithBLOBs(SysCbitErrorExample example);
  57. /**
  58. * description:selectByExample
  59. *
  60. * @author: gws
  61. * @date: 2021-11-26
  62. * @since: 1.0
  63. */
  64. List<SysCbitError> selectByExample(SysCbitErrorExample example);
  65. /**
  66. * description:selectByPrimaryKey
  67. *
  68. * @author: gws
  69. * @date: 2021-11-26
  70. * @since: 1.0
  71. */
  72. SysCbitError selectByPrimaryKey(String reqno);
  73. /**
  74. * description:updateByExampleSelective
  75. *
  76. * @author: gws
  77. * @date: 2021-11-26
  78. * @since: 1.0
  79. */
  80. int updateByExampleSelective(@Param("record") SysCbitError record, @Param("example") SysCbitErrorExample example);
  81. /**
  82. * description:updateByExampleWithBLOBs
  83. *
  84. * @author: gws
  85. * @date: 2021-11-26
  86. * @since: 1.0
  87. */
  88. int updateByExampleWithBLOBs(@Param("record") SysCbitError record, @Param("example") SysCbitErrorExample example);
  89. /**
  90. * description:updateByExample
  91. *
  92. * @author: gws
  93. * @date: 2021-11-26
  94. * @since: 1.0
  95. */
  96. int updateByExample(@Param("record") SysCbitError record, @Param("example") SysCbitErrorExample example);
  97. /**
  98. * description:updateByPrimaryKeySelective
  99. *
  100. * @author: gws
  101. * @date: 2021-11-26
  102. * @since: 1.0
  103. */
  104. int updateByPrimaryKeySelective(SysCbitError record);
  105. /**
  106. * description:updateByPrimaryKeyWithBLOBs
  107. *
  108. * @author: gws
  109. * @date: 2021-11-26
  110. * @since: 1.0
  111. */
  112. int updateByPrimaryKeyWithBLOBs(SysCbitError record);
  113. /**
  114. * description:updateByPrimaryKey
  115. *
  116. * @author: gws
  117. * @date: 2021-11-26
  118. * @since: 1.0
  119. */
  120. int updateByPrimaryKey(SysCbitError record);
  121. }