This commit is contained in:
邹宗楠
2022-08-25 16:10:01 +08:00
parent be87623211
commit 66db5867a4
49 changed files with 2364 additions and 649 deletions

View File

@@ -0,0 +1,13 @@
package app_server
import "git.rosy.net.cn/jx-print/dao"
type PrintActivation struct {
}
var PrintActivationServer = new(PrintActivation)
// QueryPrintHeard 查询打印机是否激活
func (p *PrintActivation) QueryPrintHeard(printNo string) (bool, error) {
return dao.PrintActivationDao.QueryPrintHeartBeat(printNo)
}