打印信息表

This commit is contained in:
suyl
2021-06-28 14:41:40 +08:00
parent 30a41b59f4
commit 052c1362e0

View File

@@ -15,3 +15,18 @@ func (v *Printer) TableIndex() [][]string {
[]string{"PrintNo"},
}
}
type PrintMsg struct {
ModelIDCULD
PrintNo string `json:"print_no"` //打印机编号
OrderNo int `json:"order_no"` //订单序号
Status int `json:"status"` //打印状态
Comment string `json:"comment"` //失败原因
}
func (v *PrintMsg) TableIndex() [][]string {
return [][]string{
[]string{"PrintNo"},
}
}