ab
2024-11-04 09d882262f530ded672f1c01fb65a1fefa00d52d
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
44
45
46
47
48
49
package com.nova.sankuai.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.nova.sankuai.domain.entity.SystemParam;
import com.nova.sankuai.domain.vo.EnumParamsVo;
import com.nova.sankuai.domain.vo.PayTypeParamVo;
import com.nova.sankuai.domain.vo.SystemConfigVo;
 
import java.util.List;
 
/**
 * @author weikangdi
 * @create 2022/1/19
 */
public interface ISystemParamService extends IService<SystemParam> {
 
    /**
     * 更新贷款超市的排列配置
     *
     * @param type
     */
    void updateLoanMarketArray(Integer type);
 
    /**
     * 获取系统默认配置参数
     *
     * @return
     */
    SystemConfigVo getSystemParam();
 
    /**
     * 获取系统内可用支付方式
     * @return
     */
    PayTypeParamVo getPayTypeList();
 
    /**
     * 编辑默认支付方式
     * @param code
     */
    void updatePayType(Integer code);
 
    /**
     * 获取系统枚举信息
     * @param code
     * @return
     */
    List<EnumParamsVo> getEnumParams(String code);
}