Skip to content

Commit f79e280

Browse files
committed
feat: create model request feature
1 parent cdf2ad2 commit f79e280

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

models/models_request.go

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package models
2+
3+
type BodyRequest struct {
4+
Query Query `json:"query,omitempty"`
5+
}
6+
7+
type Query struct {
8+
Match Match `json:"match,omitempty"`
9+
}
10+
11+
type Match struct {
12+
CNJNumber string `json:"numeroProcesso,omitempty"`
13+
}

0 commit comments

Comments
 (0)