- 将BindPrinterResult.ExpiresIn改为ExpiresAt

This commit is contained in:
gazebo
2019-07-11 11:20:05 +08:00
parent d11e3d84cd
commit 4817d5c1c2
3 changed files with 6 additions and 6 deletions

View File

@@ -8,10 +8,10 @@ import (
)
type BindPrinterResult struct {
PrinterSN string
PrinterKey string
PrinterKey2 string
ExpiresIn int64 `json:"expires_in"`
PrinterSN string `json:"printerSN"`
PrinterKey string `json:"printerKey"`
PrinterKey2 string `json:"printerKey2"`
ExpiresAt int64 `json:"expiresAt"`
}
type IPrinterHandler interface {