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);
|
|
}
|