TgjjGrxxMapper.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.sooka.system.mapper;
  2. import java.util.List;
  3. import com.sooka.common.annotation.DataSource;
  4. import com.sooka.common.enums.DataSourceType;
  5. import com.sooka.system.domain.TgjjGrxx;
  6. /**
  7. * 个人信息Mapper接口
  8. *
  9. * @author lei
  10. * @date 2021-11-16
  11. */
  12. @DataSource(value = DataSourceType.SLAVE)
  13. public interface TgjjGrxxMapper
  14. {
  15. /**
  16. * 查询个人信息
  17. *
  18. * @param ID 个人信息ID
  19. * @return 个人信息
  20. */
  21. public TgjjGrxx selectTgjjGrxxById(Long ID);
  22. /**
  23. * 查询个人信息列表
  24. *
  25. * @param tgjjGrxx 个人信息
  26. * @return 个人信息集合
  27. */
  28. public List<TgjjGrxx> selectTgjjGrxxList(TgjjGrxx tgjjGrxx);
  29. /**
  30. * 新增个人信息
  31. *
  32. * @param tgjjGrxx 个人信息
  33. * @return 结果
  34. */
  35. public int insertTgjjGrxx(TgjjGrxx tgjjGrxx);
  36. /**
  37. * 修改个人信息
  38. *
  39. * @param tgjjGrxx 个人信息
  40. * @return 结果
  41. */
  42. public int updateTgjjGrxx(TgjjGrxx tgjjGrxx);
  43. /**
  44. * 删除个人信息
  45. *
  46. * @param ID 个人信息ID
  47. * @return 结果
  48. */
  49. public int deleteTgjjGrxxById(Long ID);
  50. /**
  51. * 批量删除个人信息
  52. *
  53. * @param IDs 需要删除的数据ID
  54. * @return 结果
  55. */
  56. public int deleteTgjjGrxxByIds(String[] IDs);
  57. }