KKbes
2023-08-07 890eafcf31f5f8d519bb9e6f9c15303be5328e2d
force-app/main/default/classes/LexCommitNeedApprovalController.cls
@@ -15,15 +15,17 @@
    }
    @AuraEnabled
    public static void  newUpdateMeetingDelayApply(String Id){
    public static String  newUpdateMeetingDelayApply(String Id){
        meeting_delay_apply__c res = new meeting_delay_apply__c();
        try{
            res.Id=Id;
            res.Status__c ='提交';
            update res;
            return 'succuse';
        }
        catch (Exception e) {
            System.debug(LoggingLevel.INFO, '*** e: ' + e);
            return e.getMessage();
        }
    }