This commit is contained in:
aozhiwei 2024-06-05 16:45:34 +08:00
parent 81bf779a96
commit 901b27df55

View File

@ -85,6 +85,14 @@ func (this *player) MarkMails(mails []common.Mail) error {
}
func (this *player) GetAttachment(mails []common.Mail) error {
this.checkLock()
/*
cbParams := struct {
Mails []struct {
MailId string `json:"mailid"`
Attachments []*common.AttachmentDto `json:"attachments"`
} `json:"mails"`
}{}*/
return this.DeleteMails(mails)
}