Unverified Commit dca35bde authored by boojack's avatar boojack Committed by GitHub

fix: disable decode patch id (#831)

parent 9f25badd
...@@ -57,7 +57,7 @@ type MemoCreate struct { ...@@ -57,7 +57,7 @@ type MemoCreate struct {
} }
type MemoPatch struct { type MemoPatch struct {
ID int ID int `json:"-"`
// Standard fields // Standard fields
CreatedTs *int64 `json:"createdTs"` CreatedTs *int64 `json:"createdTs"`
......
...@@ -41,7 +41,7 @@ type ResourceFind struct { ...@@ -41,7 +41,7 @@ type ResourceFind struct {
} }
type ResourcePatch struct { type ResourcePatch struct {
ID int ID int `json:"-"`
// Standard fields // Standard fields
UpdatedTs *int64 UpdatedTs *int64
......
...@@ -24,7 +24,7 @@ type ShortcutCreate struct { ...@@ -24,7 +24,7 @@ type ShortcutCreate struct {
} }
type ShortcutPatch struct { type ShortcutPatch struct {
ID int ID int `json:"-"`
// Standard fields // Standard fields
UpdatedTs *int64 UpdatedTs *int64
......
...@@ -69,7 +69,7 @@ func (create UserCreate) Validate() error { ...@@ -69,7 +69,7 @@ func (create UserCreate) Validate() error {
} }
type UserPatch struct { type UserPatch struct {
ID int ID int `json:"-"`
// Standard fields // Standard fields
UpdatedTs *int64 UpdatedTs *int64
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment