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
| 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;
|
| }
|
|