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
| package com.yeshi.fanli.service.inter.redpack;
|
| import java.util.Date;
|
| import com.yeshi.fanli.entity.redpack.RedPackConfig;
|
| public interface RedPackConfigService {
|
| /**
| * 根据key值查询
| *
| * @param key
| * @return
| */
| public RedPackConfig getByKey(String key);
|
| /**
| * 根据key值 获取value
| *
| * @param key
| * @return
| */
| public String getValueByKey(String key);
|
|
| public RedPackConfig getByKey(String key, Date date);
|
|
| public String getValueByKey(String key, Date date);
| }
|
|