TgjjGrzhxxMapper.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.sooka.mapper;
  2. import com.sooka.model.bo.TgjjGrzhxx;
  3. import java.util.List;
  4. /**
  5. * 【请填写功能名称】Mapper接口
  6. *
  7. * @author lei
  8. * @date 2021-11-15
  9. */
  10. public interface TgjjGrzhxxMapper
  11. {
  12. /**
  13. * 查询【请填写功能名称】
  14. *
  15. * @param ID 【请填写功能名称】ID
  16. * @return 【请填写功能名称】
  17. */
  18. public TgjjGrzhxx selectTgjjGrzhxxById(Long ID);
  19. /**
  20. * 查询【请填写功能名称】列表
  21. *
  22. * @param tgjjGrzhxx 【请填写功能名称】
  23. * @return 【请填写功能名称】集合
  24. */
  25. public List<TgjjGrzhxx> selectTgjjGrzhxxList(TgjjGrzhxx tgjjGrzhxx);
  26. /**
  27. * 新增【请填写功能名称】
  28. *
  29. * @param tgjjGrzhxx 【请填写功能名称】
  30. * @return 结果
  31. */
  32. public int insertTgjjGrzhxx(TgjjGrzhxx tgjjGrzhxx);
  33. /**
  34. * 修改【请填写功能名称】
  35. *
  36. * @param tgjjGrzhxx 【请填写功能名称】
  37. * @return 结果
  38. */
  39. public int updateTgjjGrzhxx(TgjjGrzhxx tgjjGrzhxx);
  40. /**
  41. * 删除【请填写功能名称】
  42. *
  43. * @param ID 【请填写功能名称】ID
  44. * @return 结果
  45. */
  46. public int deleteTgjjGrzhxxById(Long ID);
  47. /**
  48. * 批量删除【请填写功能名称】
  49. *
  50. * @param IDs 需要删除的数据ID
  51. * @return 结果
  52. */
  53. public int deleteTgjjGrzhxxByIds(String[] IDs);
  54. }