1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| global without sharing class NFM703WebService {
| Webservice static String sendToOBPM(String iflog_Id, List< String > camIdList){
| // List < Campaign > clist = [select id,
| // TrainingCode__c,
| // Name,
| // StartDate,
| // EndDate,
| // Budget_Type__c,
| // OfficeCategory__c,
| // Meeting_Type__c,
| // State_Master__c,
| // City_Master__c,
| // WorkshopPlace__c,
| // HostName__c,
| // cooperatorCompany__c,
| // IF_Approved__c from Campaign where id in: camIdList];
| NFM703Controller.callout(iflog_Id,camIdList);
| return '发送成功';
| }
| // public NFM703WebService() {
|
| // }
| }
|
|