From fcfc9e744da652d2ffc0a43221ca7d1d95136af2 Mon Sep 17 00:00:00 2001 From: suyl <770236076@qq.com> Date: Fri, 13 Aug 2021 11:09:16 +0800 Subject: [PATCH] aa --- business/model/print.go | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/business/model/print.go b/business/model/print.go index eeb1c10f4..01ad8e5c1 100644 --- a/business/model/print.go +++ b/business/model/print.go @@ -14,14 +14,15 @@ type PrintMsg struct { type Printer struct { ModelIDCULD - AppID int `orm:"column(app_id)" json:"app_id"` //应用编号 - PrintNo string `json:"print_no"` //打印机编号 - PrintKey string `json:"print_key"` //打印机识别码 - Name string `json:"name"` //打印机备注名 - Status int `json:"status"` //打印机状态 - IsOnline int `json:"is_online"` //1在线,0离线 - IccID string `orm:"column(icc_id)" json:"iccid"` //sim卡号 - Sound string `json:"sound"` //声音类型 sounda ,b,c,d,e,f,g - Volume int `json:"volume"` //音量,1-5 ,对应打印机2-10 - FlowFlag int `json:"flowFlag"` //是否超流量了,1表示超了 + AppID int `orm:"column(app_id)" json:"app_id"` //应用编号 + PrintNo string `json:"print_no"` //打印机编号 + PrintKey string `json:"print_key"` //打印机识别码 + Name string `json:"name"` //打印机备注名 + Status int `json:"status"` //打印机状态 + IsOnline int `json:"is_online"` //1在线,0离线 + IccID string `orm:"column(icc_id)" json:"iccid"` //sim卡号 + Sound string `json:"sound"` //声音类型 sounda ,b,c,d,e,f,g + Volume int `json:"volume"` //音量,1-5 ,对应打印机2-10 + FlowFlag int `json:"flowFlag"` //是否超流量了,1表示超了 + OfflineCount int `json:"offlineCount"` //掉线次数 }