10 lines
327 B
Go
10 lines
327 B
Go
package processors
|
|
|
|
import "context"
|
|
|
|
// QYGLReportPDFScheduler 企业全景报告 PDF 异步预生成调度器(可为 nil 表示禁用)
|
|
type QYGLReportPDFScheduler interface {
|
|
// ScheduleQYGLReportPDF 在报告数据就绪后异步生成 PDF 并写入缓存
|
|
ScheduleQYGLReportPDF(ctx context.Context, reportID string)
|
|
}
|