ludc
2023-05-29 101e8e9738e4bfe0ef7a5170d117b47bf901b8f6
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
package com.vci.ubcs.code.webservice.service;
 
 
import org.springblade.core.tool.api.R;
 
/***
 * 与集团集成服务
 * @author xiejun
 */
public interface IGroupMdmInterService {
    /***
     * 主数据像集团申请编码
     * @param oids
     * @param btmName
     * @return 返回结果信息
     * @throws Exception
     */
    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;
 
    /***
     *
     * @return
     * @throws Throwable
     */
    public R pubJTclsfModel()throws Throwable;
 
}