TgjjKjhzbMapper.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.sooka.mapper;
  2. import com.baomidou.dynamic.datasource.annotation.DS;
  3. import com.sooka.model.bo.TgjjKjhzb;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. /**
  7. * 【请填写功能名称】Mapper接口
  8. *
  9. * @author lei
  10. * @date 2021-11-15
  11. */
  12. @Mapper
  13. @DS("db1_gjj")
  14. public interface TgjjKjhzbMapper
  15. {
  16. /**
  17. * 查询【请填写功能名称】
  18. *
  19. * @param ID 【请填写功能名称】ID
  20. * @return 【请填写功能名称】
  21. */
  22. public TgjjKjhzb selectTgjjKjhzbById(Long ID);
  23. /**
  24. * 查询【请填写功能名称】列表
  25. *
  26. * @param tgjjKjhzb 【请填写功能名称】
  27. * @return 【请填写功能名称】集合
  28. */
  29. public List<TgjjKjhzb> selectTgjjKjhzbList(TgjjKjhzb tgjjKjhzb);
  30. /**
  31. * 新增【请填写功能名称】
  32. *
  33. * @param tgjjKjhzb 【请填写功能名称】
  34. * @return 结果
  35. */
  36. public int insertTgjjKjhzb(TgjjKjhzb tgjjKjhzb);
  37. /**
  38. * 修改【请填写功能名称】
  39. *
  40. * @param tgjjKjhzb 【请填写功能名称】
  41. * @return 结果
  42. */
  43. public int updateTgjjKjhzb(TgjjKjhzb tgjjKjhzb);
  44. /**
  45. * 删除【请填写功能名称】
  46. *
  47. * @param ID 【请填写功能名称】ID
  48. * @return 结果
  49. */
  50. public int deleteTgjjKjhzbById(Long ID);
  51. /**
  52. * 批量删除【请填写功能名称】
  53. *
  54. * @param IDs 需要删除的数据ID
  55. * @return 结果
  56. */
  57. public int deleteTgjjKjhzbByIds(String[] IDs);
  58. }