ludc
2024-12-26 8267d62b7d89e101669e20e66d6b94420fb82c85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.vci.ubcs.code.service;
 
import com.vci.ubcs.code.entity.MdmCount;
import org.springblade.core.log.exception.ServiceException;
 
import java.util.List;
 
/**
 * 主数据总数统计服务
 * @author ludc
 * @date 2023/10/16 15:48
 */
public interface IMdmCountService {
 
    /**
     * 统计主数据总数
     * @return
     */
    List<MdmCount> getMdmCounts(String userId) throws ServiceException;
 
}