提交 | 用户 | 时间
|
a6de49
|
1 |
///** |
H |
2 |
// * Copyright (c) 2018 人人开源 All rights reserved. |
|
3 |
// * |
|
4 |
// * https://www.renren.io |
|
5 |
// * |
|
6 |
// * 版权所有,侵权必究! |
|
7 |
// */ |
|
8 |
// |
|
9 |
//package com.iailab.module.system.service.params; |
|
10 |
// |
|
11 |
// |
|
12 |
//import com.iailab.common.page.PageData; |
|
13 |
//import com.iailab.common.service.BaseService; |
|
14 |
//import com.iailab.modules.sys.dto.SysParamsDTO; |
|
15 |
//import com.iailab.modules.sys.entity.SysParamsEntity; |
|
16 |
// |
|
17 |
//import java.util.List; |
|
18 |
//import java.util.Map; |
|
19 |
// |
|
20 |
///** |
|
21 |
// * 参数管理 |
|
22 |
// * |
|
23 |
// * @author Mark sunlightcs@gmail.com |
|
24 |
// * @since 1.0.0 |
|
25 |
// */ |
|
26 |
//public interface ParamsService extends BaseService<SysParamsEntity> { |
|
27 |
// |
|
28 |
// /** |
|
29 |
// * 根据参数编码,获取参数的value值 |
|
30 |
// * |
|
31 |
// * @param paramCode 参数编码 |
|
32 |
// */ |
|
33 |
// String getValue(String paramCode); |
|
34 |
// |
|
35 |
// /** |
|
36 |
// * 根据参数编码,获取value的Object对象 |
|
37 |
// * @param paramCode 参数编码 |
|
38 |
// * @param clazz Object对象 |
|
39 |
// */ |
|
40 |
// <T> T getValueObject(String paramCode, Class<T> clazz); |
|
41 |
// |
|
42 |
// /** |
|
43 |
// * 根据参数编码,更新value |
|
44 |
// * @param paramCode 参数编码 |
|
45 |
// * @param paramValue 参数值 |
|
46 |
// */ |
|
47 |
// int updateValueByCode(String paramCode, String paramValue); |
|
48 |
// |
|
49 |
// String getValueByCode(String paramCode); |
|
50 |
//} |