后台服务
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

40 行
870 B

  1. package com.iformall.service;
  2. import com.github.pagehelper.PageInfo;
  3. import com.iformall.domain.po.SysConfig;
  4. import com.iformall.domain.po.base.TenantEntity;
  5. import java.util.List;
  6. public interface SysConfigService {
  7. PageInfo<SysConfig> listAsPage(SysConfig record, Integer pageIndex, Integer pageSize,TenantEntity tenantEntity);
  8. /**
  9. * 根据实体查询列表
  10. *
  11. * @param record
  12. * @return
  13. */
  14. List<SysConfig> getList(SysConfig record,TenantEntity tenantEntity);
  15. /**
  16. * 根据Id获得实体
  17. *
  18. * @param id
  19. * @return
  20. */
  21. SysConfig getById(Long id,TenantEntity tenantEntity);
  22. SysConfig getByKey(String key,TenantEntity tenantEntity);
  23. /**
  24. * 保存或更新实体
  25. *
  26. * @param record
  27. */
  28. void saveConfigValue(Long id,TenantEntity tenantEntity,String value);
  29. }