田源
2024-04-16 e1feed4fb9f3a7722eb0cd646e73e6573bdfb6e1
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.vci.ubcs.code.applyjtcodeservice.service;
 
 
import com.vci.ubcs.starter.exception.VciBaseException;
import org.springblade.core.tool.api.R;
 
/***
 * 与集团集成服务
 * @author xiejun
 */
public interface IGroupMdmInterService {
 
    /***
     * 主数据像集团申请编码
     * @param oids
     * @param btmName
     * @return 返回结果信息
     * @throws Throwable
     */
    public R applyGroupCode(String oids, String btmName)throws Throwable;
 
    /***
     * 主数据像集团更改编码
     * @param oids 需要修改的数据主键数组
     * @param btmName 业务类型
     * @return 返回结果信息
     * @throws Throwable
     */
    public R receiveEditApply(String oids, String btmName)throws Throwable;
 
    /***
     * 查询分类详细模型视图
     * @param jtclsfId:集团分类oid
     * @return 返回结果信息
     * @throws Throwable
     */
    public R queryClassModel(String jtclsfId)throws Throwable;
 
    /***
     * 查询分类详细模型视图
     * @return 返回结果信息
     * @throws Throwable
     */
    public R queryMdmModel()throws Throwable;
 
    /***
     *同步集团模型视图
     * @param classifyId
     * @param operationType
     * @return
     */
    R syncClassifyModel(String classifyId, String operationType)throws VciBaseException;
 
    /***
     * 查询状态
     * @param oids
     * @return
     * @throws VciBaseException
     */
    R queryApplyState(String oids)throws VciBaseException;
 
}