package com.vci.ubcs.system.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.vci.ubcs.system.entity.MdmCountConfig;
|
import com.vci.ubcs.system.vo.MdmCountConfigVO;
|
import org.springblade.core.tool.api.R;
|
|
/**
|
* 主数据统计首页配置服务
|
* @author ludc
|
* @date 2023/10/17 14:44
|
*/
|
public interface IMdmCountConfigService extends IService<MdmCountConfig> {
|
|
/**
|
* 保存用户配置的主数据统计项
|
* @param mdmCountConfigVO
|
* @return
|
*/
|
R saveMdmCountConfig(MdmCountConfigVO mdmCountConfigVO);
|
|
/**
|
* 获取当前用户有那些主数据统计配置在首页
|
* @param userId
|
* @return
|
*/
|
MdmCountConfig getMdmCountConfig(String userId);
|
|
}
|