ISysNfcBindService.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package com.xunmei.system.service;
  2. import java.util.List;
  3. import com.xunmei.system.domain.SysNfcBind;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  6. import com.xunmei.common.core.web.page.TableDataInfo;
  7. /**
  8. * 【请填写功能名称】Service接口
  9. *
  10. * @author xunmei
  11. * @date 2023-08-15
  12. */
  13. public interface ISysNfcBindService extends IService<SysNfcBind> {
  14. /**
  15. * 查询【请填写功能名称】
  16. *
  17. * @param id 【请填写功能名称】主键
  18. * @return 【请填写功能名称】
  19. */
  20. public SysNfcBind selectSysNfcBindById(Long id);
  21. /**
  22. * 查询【请填写功能名称】列表
  23. *
  24. * @param sysNfcBind 【请填写功能名称】
  25. * @return 【请填写功能名称】集合
  26. */
  27. public List<SysNfcBind> selectSysNfcBindList(SysNfcBind sysNfcBind);
  28. /**
  29. * 新增【请填写功能名称】
  30. *
  31. * @param sysNfcBind 【请填写功能名称】
  32. * @return 结果
  33. */
  34. public int insertSysNfcBind(SysNfcBind sysNfcBind);
  35. /**
  36. * 修改【请填写功能名称】
  37. *
  38. * @param sysNfcBind 【请填写功能名称】
  39. * @return 结果
  40. */
  41. public int updateSysNfcBind(SysNfcBind sysNfcBind);
  42. /**
  43. * 批量删除【请填写功能名称】
  44. *
  45. * @param ids 需要删除的【请填写功能名称】主键集合
  46. * @return 结果
  47. */
  48. public int deleteSysNfcBindByIds(Long[] ids);
  49. /**
  50. * 删除【请填写功能名称】信息
  51. *
  52. * @param id 【请填写功能名称】主键
  53. * @return 结果
  54. */
  55. public int deleteSysNfcBindById(Long id);
  56. /**
  57. * 查询【请填写功能名称】分页数据
  58. *
  59. * @param sysNfcBind 查询条件对象
  60. * @return Page
  61. */
  62. public TableDataInfo selectPage(SysNfcBind sysNfcBind);
  63. }