Class BaseRestServiceWithExport<T,TRequest extends PageableRequest,TResponse,TExcel>

java.lang.Object
com.bytedesk.core.base.BaseRestService<T,TRequest,TResponse>
com.bytedesk.core.base.BaseRestServiceWithExport<T,TRequest,TResponse,TExcel>
Direct Known Subclasses:
ActionRestService, AgentStatusSettingRestService, AgentTemplateRestService, AiStatisticRestService, ArticleRestService, AutoReplyFixedRestService, AutoReplyKeywordRestService, BlackRestService, BookingRestService, BrowseRestService, CallCdrRestService, CallConferenceRestService, CallGatewayRestService, CallIvrRestService, CallMrcpRestService, CallStatisticRestService, CallUserRestService, CallWebRTCRestService, ChannelAppRestService, ChunkRestService, ConsumerRestService, CustomerRestService, DouyinAppRestService, EmailMessageRestService, EmailRestService, FaqRestService, FileRestService, FormResultRestService, GroupRestService, IntentionSettingsRestService, InviteSettingsRestService, IpBlackRestService, JanusAudioRestService, JanusVideoRestService, KakaoRestService, KbaseStatisticRestService, LineRestService, MaterialRestService, McpServerRestService, MemberRestService, MessageLeaveRestService, MessageRatingRestService, MessageRestService, MessageTemplateRestService, MetaAppRestService, MomentRestService, OrganizationApplyRestService, QualityAppealRestService, QualityCheckRestService, QualityFlowRestService, QualityPlanRestService, QualityStatisticRestService, QueueMemberRestService, QueueRestService, QuickReplyRestService, RatedownSettingsRestService, RelationRestService, RobotMessageRestService, RobotRestService, RoutingRuleRestService, ScreenRestService, ServiceSettingsRestService, ServiceStatisticRestService, ShopAppRestService, ShoppingRestService, SlackRestService, StatisticTokenRestService, TabooMessageRestService, TabooRestService, TagRestService, TelegramRestService, TextRestService, ThreadInviteRestService, ThreadRatingRestService, ThreadRestService, ThreadSummaryRestService, ThreadTransferRestService, TicketRestService, TicketStatisticRestService, TicketTemplateRestService, TiktokRestService, TraceRestService, TransferKeywordRestService, UserRestService, VisitorRatingRestService, VisitorRestService, WebhookMessageRestService, WebhookRestService, WebpageRestService, WebsiteRestService, WeChatAppRestService, WhatsAppRestService, WorkflowResultRestService, WorktimeSettingRestService, ZaloRestService

public abstract class BaseRestServiceWithExport<T,TRequest extends PageableRequest,TResponse,TExcel> extends BaseRestService<T,TRequest,TResponse>
改进的带Excel导出功能的基础RestService类 继承自BaseRestServiceImproved,增加Excel相关抽象方法
  • Constructor Details

    • BaseRestServiceWithExport

      public BaseRestServiceWithExport()
  • Method Details

    • queryByOrgEntity

      public org.springframework.data.domain.Page<T> queryByOrgEntity(TRequest request)
      查询实体对象(用于Excel导出) 子类必须实现此方法
    • convertToExcel

      public abstract TExcel convertToExcel(T entity)
      转换为Excel对象 子类必须实现此方法