| | |
| | | package com.ruoyi.system.service.config; |
| | | |
| | | import com.ruoyi.system.domain.dto.MgtServiceMobileEditDto; |
| | | import com.ruoyi.system.domain.pojo.config.CustomConfig; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.system.domain.dto.MgtMemberConfigEditDto; |
| | | import com.ruoyi.system.domain.dto.MgtOtherConfigEditDto; |
| | | import com.ruoyi.system.domain.dto.MgtServiceMobileEditDto; |
| | | import com.ruoyi.system.domain.dto.MgtShopConfigEditDto; |
| | | import com.ruoyi.system.domain.pojo.config.CustomConfig; |
| | | import com.ruoyi.system.domain.vo.MgtCustomConfigVo; |
| | | |
| | | /** |
| | | * <p> |
| | | * 系统配置 服务类 |
| | | * </p> |
| | | * |
| | | * @author jqs |
| | | * @since 2023-04-25 |
| | | * @ClassName CustomConfigService |
| | | * @Description TODO |
| | | * @Author jqs |
| | | * @Date 2023/6/7 16:32 |
| | | * @Version 1.0 |
| | | */ |
| | | public interface CustomConfigService extends IService<CustomConfig> { |
| | | |
| | |
| | | CustomConfig getByKey(String key); |
| | | |
| | | |
| | | /** |
| | | /** |
| | | * @description 修改客服号码 |
| | | * @author jqs |
| | | * @date 2023/6/6 11:53 |
| | |
| | | */ |
| | | void editServiceMobile( MgtServiceMobileEditDto mgtServiceMobileEditDto); |
| | | |
| | | /** |
| | | * @description 平台获取自定义配置 |
| | | * @author jqs |
| | | * @date 2023/6/7 15:02 |
| | | * @param |
| | | * @return MgtCustomConfigVo |
| | | */ |
| | | MgtCustomConfigVo getCustomConfig(); |
| | | |
| | | /** |
| | | * @description 修改其他设置 |
| | | * @author jqs |
| | | * @date 2023/6/7 16:07 |
| | | * @param mgtOtherConfigEditDto |
| | | * @return void |
| | | */ |
| | | void editOtherConfig(MgtOtherConfigEditDto mgtOtherConfigEditDto); |
| | | |
| | | /** |
| | | * @description 修改合作商配置 |
| | | * @author jqs |
| | | * @date 2023/6/7 16:41 |
| | | * @param mgtShopConfigEditDto |
| | | * @return void |
| | | */ |
| | | void editShopConfig(MgtShopConfigEditDto mgtShopConfigEditDto); |
| | | |
| | | /** |
| | | * @description 修改会员配置 |
| | | * @author jqs |
| | | * @date 2023/6/7 17:16 |
| | | * @param mgtMemberConfigEditDto |
| | | * @return void |
| | | */ |
| | | void editMemberConfig(MgtMemberConfigEditDto mgtMemberConfigEditDto); |
| | | } |