查询所有的生成功能名字

This commit is contained in:
2025-04-14 14:14:45 +08:00
parent 1ce6c74f2c
commit 21efcf3ea6
4 changed files with 21 additions and 0 deletions

View File

@@ -56,4 +56,6 @@ public interface ConvenientInquiryService extends IService<Questionnaire> {
String exportTransactionRecords(QueryPaymentInfoDTO queryPaymentInfoDTO, HttpServletResponse response);
PageBaseResponse<AccountCreditsUsageDTO> getGenerateFrequency(AccountCreditsUsageQueryDTO queryDTO);
List<String> getAllGenerateFuncName();
}

View File

@@ -905,4 +905,8 @@ public class ConvenientInquiryServiceImpl extends ServiceImpl<QuestionnaireMappe
}
}
public List<String> getAllGenerateFuncName(){
return CreditsEventsEnum.generateFunctionNames();
}
}