This commit is contained in:
邹宗楠
2022-10-18 10:30:37 +08:00
parent c0d92f612e
commit 03069ce0fe
19 changed files with 187 additions and 19 deletions

View File

@@ -41,3 +41,8 @@ type RelieveStore struct {
StoreID int64 `json:"store_id" form:"store_id" binding:"required"` // 门店id(为京西创建门店id)
PrintNo string `json:"print_no" form:"print_no" binding:"required"` // 打印机编号
}
// RelieveBind 解除用户和打印机的绑定关系
type RelieveBind struct {
PrintNo string `json:"print_no" form:"print_no" binding:"required"` // 打印机编号
}