This commit is contained in:
2026-01-14 17:51:03 +08:00
parent 21fae5c486
commit 1e4e2f4b6d
4 changed files with 71 additions and 0 deletions

View File

@@ -371,6 +371,13 @@ type JRZQO6L7Req struct {
Authorized string `json:"authorized" validate:"required,oneof=0 1"`
}
type JRZQS7G0Req struct {
MobileNo string `json:"mobile_no" validate:"omitempty,min=11,max=11,validMobileNo"`
IDCard string `json:"id_card" validate:"required,validIDCard"`
Name string `json:"name" validate:"required,min=1,validName"`
Authorized string `json:"authorized" validate:"required,oneof=0 1"`
}
type JRZQO7L1Req struct {
MobileNo string `json:"mobile_no" validate:"omitempty,min=11,max=11,validMobileNo"`
IDCard string `json:"id_card" validate:"required,validIDCard"`