Documentation ¶
Index ¶
- func ExecutePlan()
- type ChatService
- func (exa *ChatService) CreateRecruitPlan(e example.ExaRecruitPlan) (err error)
- func (exa *ChatService) DeleteRecruitAccount(e *example.ExaRecruitAccount) (err error)
- func (exa *ChatService) DeleteRecruitPlan(e *example.ExaRecruitPlan) (err error)
- func (exa *ChatService) GetExaCustomer(id uint) (customer example.ExaRecruitAccount, err error)
- func (exa *ChatService) GetRecruitAccountList(sysUserAuthorityID uint, info request.PageInfo) (list interface{}, total int64, err error)
- func (exa *ChatService) GetRecruitPlanList(sysUserAuthorityID uint, info exaRequest.GetRecruitPlanList) (list interface{}, total int64, err error)
- func (exa *ChatService) GetReply() (isSuccess string)
- func (exa *ChatService) ReceiveMessages(e example.ChatMessage) (err error)
- func (exa *ChatService) StartTimer(f func())
- func (exa *ChatService) UpdateRecruitAccount(e *example.ExaRecruitAccount) (err error)
- func (exa *ChatService) UpdateRecruitPlan(e *example.ExaRecruitPlan) (err error)
- type CustomerService
- func (exa *CustomerService) CreateExaCustomer(e example.ExaCustomer) (err error)
- func (exa *CustomerService) DeleteExaCustomer(e example.ExaCustomer) (err error)
- func (exa *CustomerService) GetCustomerInfoList(sysUserAuthorityID uint, info request.PageInfo) (list interface{}, total int64, err error)
- func (exa *CustomerService) GetExaCustomer(id uint) (customer example.ExaCustomer, err error)
- func (exa *CustomerService) UpdateExaCustomer(e *example.ExaCustomer) (err error)
- type FileUploadAndDownloadService
- func (e *FileUploadAndDownloadService) CreateFileChunk(id uint, fileChunkPath string, fileChunkNumber int) error
- func (e *FileUploadAndDownloadService) DeleteFile(file example.ExaFileUploadAndDownload) (err error)
- func (e *FileUploadAndDownloadService) DeleteFileChunk(fileMd5 string, filePath string) error
- func (e *FileUploadAndDownloadService) EditFileName(file example.ExaFileUploadAndDownload) (err error)
- func (e *FileUploadAndDownloadService) FindFile(id uint) (example.ExaFileUploadAndDownload, error)
- func (e *FileUploadAndDownloadService) FindOrCreateFile(fileMd5 string, fileName string, chunkTotal int) (file example.ExaFile, err error)
- func (e *FileUploadAndDownloadService) GetFileRecordInfoList(info request.PageInfo) (list interface{}, total int64, err error)
- func (e *FileUploadAndDownloadService) Upload(file example.ExaFileUploadAndDownload) error
- func (e *FileUploadAndDownloadService) UploadFile(header *multipart.FileHeader, noSave string) (file example.ExaFileUploadAndDownload, err error)
- type MarkdownService
- type RecruitService
- func (exa *RecruitService) AddRecruitAccount(e example.ExaRecruitAccount) (err error)
- func (exa *RecruitService) CreateRecruitPlan(e example.ExaRecruitPlan) (err error)
- func (exa *RecruitService) DeleteRecruitAccount(e *example.ExaRecruitAccount) (err error)
- func (exa *RecruitService) DeleteRecruitPlan(e *example.ExaRecruitPlan) (err error)
- func (exa *RecruitService) GetExaCustomer(id uint) (customer example.ExaRecruitAccount, err error)
- func (exa *RecruitService) GetRecruitAccountList(sysUserAuthorityID uint, info request.PageInfo) (list interface{}, total int64, err error)
- func (exa *RecruitService) GetRecruitPlanList(sysUserAuthorityID uint, info exaRequest.GetRecruitPlanList) (list interface{}, total int64, err error)
- func (exa *RecruitService) GetReply() (isSuccess string)
- func (exa *RecruitService) UpdateRecruitAccount(e *example.ExaRecruitAccount) (err error)
- func (exa *RecruitService) UpdateRecruitPlan(e *example.ExaRecruitPlan) (err error)
- type ServiceGroup
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ExecutePlan ¶
func ExecutePlan()
Types ¶
type ChatService ¶
type ChatService struct{}
func (*ChatService) CreateRecruitPlan ¶
func (exa *ChatService) CreateRecruitPlan(e example.ExaRecruitPlan) (err error)
func (*ChatService) DeleteRecruitAccount ¶
func (exa *ChatService) DeleteRecruitAccount(e *example.ExaRecruitAccount) (err error)
func (*ChatService) DeleteRecruitPlan ¶
func (exa *ChatService) DeleteRecruitPlan(e *example.ExaRecruitPlan) (err error)
func (*ChatService) GetExaCustomer ¶
func (exa *ChatService) GetExaCustomer(id uint) (customer example.ExaRecruitAccount, err error)
func (*ChatService) GetRecruitAccountList ¶
func (*ChatService) GetRecruitPlanList ¶
func (exa *ChatService) GetRecruitPlanList(sysUserAuthorityID uint, info exaRequest.GetRecruitPlanList) (list interface{}, total int64, err error)
func (*ChatService) GetReply ¶
func (exa *ChatService) GetReply() (isSuccess string)
func (*ChatService) ReceiveMessages ¶
func (exa *ChatService) ReceiveMessages(e example.ChatMessage) (err error)
func (*ChatService) StartTimer ¶
func (exa *ChatService) StartTimer(f func())
func (*ChatService) UpdateRecruitAccount ¶
func (exa *ChatService) UpdateRecruitAccount(e *example.ExaRecruitAccount) (err error)
func (*ChatService) UpdateRecruitPlan ¶
func (exa *ChatService) UpdateRecruitPlan(e *example.ExaRecruitPlan) (err error)
type CustomerService ¶
type CustomerService struct{}
func (*CustomerService) CreateExaCustomer ¶
func (exa *CustomerService) CreateExaCustomer(e example.ExaCustomer) (err error)
func (*CustomerService) DeleteExaCustomer ¶
func (exa *CustomerService) DeleteExaCustomer(e example.ExaCustomer) (err error)
func (*CustomerService) GetCustomerInfoList ¶
func (*CustomerService) GetExaCustomer ¶
func (exa *CustomerService) GetExaCustomer(id uint) (customer example.ExaCustomer, err error)
func (*CustomerService) UpdateExaCustomer ¶
func (exa *CustomerService) UpdateExaCustomer(e *example.ExaCustomer) (err error)
type FileUploadAndDownloadService ¶
type FileUploadAndDownloadService struct{}
func (*FileUploadAndDownloadService) CreateFileChunk ¶
func (e *FileUploadAndDownloadService) CreateFileChunk(id uint, fileChunkPath string, fileChunkNumber int) error
func (*FileUploadAndDownloadService) DeleteFile ¶
func (e *FileUploadAndDownloadService) DeleteFile(file example.ExaFileUploadAndDownload) (err error)
func (*FileUploadAndDownloadService) DeleteFileChunk ¶
func (e *FileUploadAndDownloadService) DeleteFileChunk(fileMd5 string, filePath string) error
func (*FileUploadAndDownloadService) EditFileName ¶
func (e *FileUploadAndDownloadService) EditFileName(file example.ExaFileUploadAndDownload) (err error)
EditFileName 编辑文件名或者备注
func (*FileUploadAndDownloadService) FindFile ¶
func (e *FileUploadAndDownloadService) FindFile(id uint) (example.ExaFileUploadAndDownload, error)
func (*FileUploadAndDownloadService) FindOrCreateFile ¶
func (*FileUploadAndDownloadService) GetFileRecordInfoList ¶
func (e *FileUploadAndDownloadService) GetFileRecordInfoList(info request.PageInfo) (list interface{}, total int64, err error)
func (*FileUploadAndDownloadService) Upload ¶
func (e *FileUploadAndDownloadService) Upload(file example.ExaFileUploadAndDownload) error
func (*FileUploadAndDownloadService) UploadFile ¶
func (e *FileUploadAndDownloadService) UploadFile(header *multipart.FileHeader, noSave string) (file example.ExaFileUploadAndDownload, err error)
type MarkdownService ¶
type MarkdownService struct{}
func (*MarkdownService) Save ¶
func (exa *MarkdownService) Save(e exaRequest.MarkdownResData) (err error)
type RecruitService ¶
type RecruitService struct{}
func (*RecruitService) AddRecruitAccount ¶
func (exa *RecruitService) AddRecruitAccount(e example.ExaRecruitAccount) (err error)
func (*RecruitService) CreateRecruitPlan ¶
func (exa *RecruitService) CreateRecruitPlan(e example.ExaRecruitPlan) (err error)
func (*RecruitService) DeleteRecruitAccount ¶
func (exa *RecruitService) DeleteRecruitAccount(e *example.ExaRecruitAccount) (err error)
func (*RecruitService) DeleteRecruitPlan ¶
func (exa *RecruitService) DeleteRecruitPlan(e *example.ExaRecruitPlan) (err error)
func (*RecruitService) GetExaCustomer ¶
func (exa *RecruitService) GetExaCustomer(id uint) (customer example.ExaRecruitAccount, err error)
func (*RecruitService) GetRecruitAccountList ¶
func (*RecruitService) GetRecruitPlanList ¶
func (exa *RecruitService) GetRecruitPlanList(sysUserAuthorityID uint, info exaRequest.GetRecruitPlanList) (list interface{}, total int64, err error)
func (*RecruitService) GetReply ¶
func (exa *RecruitService) GetReply() (isSuccess string)
func (*RecruitService) UpdateRecruitAccount ¶
func (exa *RecruitService) UpdateRecruitAccount(e *example.ExaRecruitAccount) (err error)
func (*RecruitService) UpdateRecruitPlan ¶
func (exa *RecruitService) UpdateRecruitPlan(e *example.ExaRecruitPlan) (err error)
type ServiceGroup ¶
type ServiceGroup struct { CustomerService FileUploadAndDownloadService RecruitService ChatService MarkdownService }
Click to show internal directories.
Click to hide internal directories.