This commit is contained in:
邹宗楠
2022-10-19 17:30:12 +08:00
parent 519f671ab4
commit 9e3e72dfe1
17 changed files with 693 additions and 204 deletions

View File

@@ -247,3 +247,8 @@ func GetPrinterReport(c *gin.Context, tokenInfo *model.TokenInfo) (getPrinterRep
func DeletePrintMsg(printNos string) error {
return dao.DeletePrinterMsg(printNos)
}
// ClearMsg 清除缓存消息
func ClearMsg(printNo string) error {
return dao.ClearPrintMsg(printNo)
}