ISysThemeInfoService.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.dgtly.system.service;
  2. import com.dgtly.system.domain.SysThemeInfo;
  3. import java.util.List;
  4. /**
  5. * 【请填写功能名称】Service接口
  6. *
  7. * @author dgtly
  8. * @date 2019-11-05
  9. */
  10. public interface ISysThemeInfoService
  11. {
  12. /**
  13. * 查询【请填写功能名称】
  14. *
  15. * @param id 【请填写功能名称】ID
  16. * @return 【请填写功能名称】
  17. */
  18. public SysThemeInfo selectSysThemeInfoById(Long id);
  19. /**
  20. * 查询【请填写功能名称】
  21. *
  22. * @param userId 【请填写功能名称】ID
  23. * @return 【请填写功能名称】
  24. */
  25. public SysThemeInfo selectSysThemeInfoByUserId(Long userId);
  26. /**
  27. * 查询【请填写功能名称】列表
  28. *
  29. * @param sysThemeInfo 【请填写功能名称】
  30. * @return 【请填写功能名称】集合
  31. */
  32. public List<SysThemeInfo> selectSysThemeInfoList(SysThemeInfo sysThemeInfo);
  33. /**
  34. * 新增【请填写功能名称】
  35. *
  36. * @param sysThemeInfo 【请填写功能名称】
  37. * @return 结果
  38. */
  39. public int insertSysThemeInfo(SysThemeInfo sysThemeInfo);
  40. /**
  41. * 修改【请填写功能名称】
  42. *
  43. * @param sysThemeInfo 【请填写功能名称】
  44. * @return 结果
  45. */
  46. public int updateSysThemeInfo(SysThemeInfo sysThemeInfo);
  47. /**
  48. * 批量删除【请填写功能名称】
  49. *
  50. * @param ids 需要删除的数据ID
  51. * @return 结果
  52. */
  53. public int deleteSysThemeInfoByIds(String ids);
  54. /**
  55. * 删除【请填写功能名称】信息
  56. *
  57. * @param id 【请填写功能名称】ID
  58. * @return 结果
  59. */
  60. public int deleteSysThemeInfoById(Long id);
  61. }