| 123456789101112131415161718192021 |
- package com.cyksj.service.sys;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.cyksj.model.entity.SysConfig;
- import java.util.List;
- /**
- * @author chan
- * @date 2022/10/20 10:07 AM
- */
- public interface SysConfigService extends IService<SysConfig> {
- /**
- * 获取默认系统默认商户主配置
- * @param type wx\zfb
- */
- String getDefaultShopConfigByType(String type);
- List<Integer> getDutyServices() throws Exception;
- }
|