cloudroam
2025-01-07 1d0fc6126fb664e81a1a3737d8eaf4a618e7cb0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.mzl.flower.service;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mzl.flower.dto.request.configParam.ConfigCustomerServiceQueryDTO;
import com.mzl.flower.dto.request.configParam.ConfigParamDTO;
import com.mzl.flower.dto.request.configParam.QueryConfigParamDTO;
import com.mzl.flower.dto.request.configParam.UpdateConfigParamDTO;
import com.mzl.flower.dto.response.configParam.ConfigCustomerServiceVO;
import com.mzl.flower.dto.response.configParam.ConfigParamVO;
import com.mzl.flower.entity.configParam.ConfigParamDO;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author @TaoJie
 * @since 2024-12-02
 */
public interface ConfigParamService extends IService<ConfigParamDO> {
 
    List<ConfigParamDO> getList(QueryConfigParamDTO dto);
 
    boolean updateConfigParamBatch(UpdateConfigParamDTO dto);
 
    Map<String, Object> getBaseInfo();
 
    String getBaseString(String paramGroup, String paramKey);
 
    void saveConfigParam(ConfigParamDTO dto);
 
    void updateConfigParam(ConfigParamDTO dto);
 
    void deleteConfigParam(Long id);
 
    Page<ConfigParamVO> queryPage(QueryConfigParamDTO dto, Page page);
 
 
}