12 lines
382 B
Go
12 lines
382 B
Go
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"` //失败原因
|
|
}
|