From e5efa596d981ddef7333c024fda50b188b60cc99 Mon Sep 17 00:00:00 2001 From: lzh <1625167628@qq.com> Date: Sun, 15 Jun 2025 14:28:33 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E9=BD=90json=20tag?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/model/bundle/bundle.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/model/bundle/bundle.go b/pkg/model/bundle/bundle.go index 35626d3..cc8a975 100644 --- a/pkg/model/bundle/bundle.go +++ b/pkg/model/bundle/bundle.go @@ -1,7 +1,7 @@ package bundle type UserWorkConfirmReq struct { - WorkUuid string - ConfirmRemark string - ConfirmStatus int // 1确认 2 驳回 + WorkUuid string `json:"workUuid"` + ConfirmRemark string `json:"confirmRemark"` + ConfirmStatus int `json:"confirmStatus"` // 1确认 2 驳回 }