ludc
2023-12-07 80da77d96adf4acbf25ea5c8614ae485bc02da2d
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;
 
}