1
2
3
4
5
6
7
global class OCMManagementProvinceWebService {
    @AuraEnabled
    WebService static String updateOpportunity() {
        Id execBTId = Database.executeBatch(new OCMManagementProvinceBatch(), 200);
        return '1';
    }
}