TCustomerMapper.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.ruoyi.system.mapper.crm;
  2. import com.ruoyi.system.domain.crm.TCustomer;
  3. import java.util.List;
  4. /**
  5. * crmMapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2023-11-28
  9. */
  10. public interface TCustomerMapper
  11. {
  12. /**
  13. * 查询crm
  14. *
  15. * @param id crm主键
  16. * @return crm
  17. */
  18. public TCustomer selectTCustomerById(String id);
  19. /**
  20. * 查询crm列表
  21. *
  22. * @param tCustomer crm
  23. * @return crm集合
  24. */
  25. public List<TCustomer> selectTCustomerList(TCustomer tCustomer);
  26. /**
  27. * 新增crm
  28. *
  29. * @param tCustomer crm
  30. * @return 结果
  31. */
  32. public int insertTCustomer(TCustomer tCustomer);
  33. /**
  34. * 修改crm
  35. *
  36. * @param tCustomer crm
  37. * @return 结果
  38. */
  39. public int updateTCustomer(TCustomer tCustomer);
  40. /**
  41. * 删除crm
  42. *
  43. * @param id crm主键
  44. * @return 结果
  45. */
  46. public int deleteTCustomerById(String id);
  47. /**
  48. * 批量删除crm
  49. *
  50. * @param ids 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteTCustomerByIds(String[] ids);
  54. }