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
package cn.iocoder.yudao.module.system.service.companyconfig;
 
import cn.iocoder.yudao.module.system.controller.admin.companyconfig.vo.SystemCompanyConfigSaveReqVO;
import cn.iocoder.yudao.module.system.dal.dataobject.companyconfig.SystemCompanyConfigDO;
 
/**
 * 公司品牌信息配置 Service 接口
 *
 * @author 超级管理员
 */
public interface SystemCompanyConfigService {
 
    /**
     * 获得公司品牌信息(单行配置)
     *
     * @return 公司品牌信息,未配置时返回 null
     */
    SystemCompanyConfigDO getCompanyConfig();
 
    /**
     * 保存公司品牌信息(单行 upsert)
     *
     * @param reqVO 保存请求
     * @return 主键
     */
    Long saveCompanyConfig(SystemCompanyConfigSaveReqVO reqVO);
 
}