This commit is contained in:
邹宗楠
2022-07-28 14:50:04 +08:00
parent 5e2c0e035e
commit 334eaef18e
3 changed files with 30 additions and 29 deletions

View File

@@ -3,12 +3,13 @@ package model
type PrintMsg struct {
ModelIDCULD
PrintNo string `json:"print_no"` //打印机编号
Content string `orm:"type(text)" json:"content"` //订单内容
OrderNo int `json:"order_no"` //订单序号
Status int `json:"status"` //打印状态
Comment string `json:"comment"` //失败原因
MsgID string `orm:"column(msg_id)" json:"msgID"`
PrintNo string `json:"print_no"` //打印机编号
Content string `orm:"type(text)" json:"content"` //订单内容
OrderNo int `json:"order_no"` //订单序号
Status int `json:"status"` //打印状态
Comment string `json:"comment"` //失败原因
MsgID string `orm:"column(msg_id)" json:"msgID"`
ContentEncryption string `orm:"type(text)" json:"content_encryption"` //订单类容进制文件
}
type Printer struct {