22 lines
740 B
Go
22 lines
740 B
Go
|
package request
|
||
|
|
||
|
type BankCardGamblingAndFraudQueryReq struct {
|
||
|
BcNo string `json:"bc_no" binding:"required"`
|
||
|
}
|
||
|
type BankCardBlacklistV1QueryReq struct {
|
||
|
Name string `json:"name" binding:"required"`
|
||
|
Mobile string `json:"mobile" binding:"required"`
|
||
|
CardNo string `json:"card_no" binding:"required"`
|
||
|
BcNo string `json:"bc_no" binding:"required"`
|
||
|
}
|
||
|
type EvaluateMarriageReq struct {
|
||
|
Name string `json:"name" binding:"required"`
|
||
|
CardNo string `json:"card_no" binding:"required"`
|
||
|
Mobile string `json:"mobile" binding:"required"`
|
||
|
VerifyCode string `json:"verify_code" binding:"required"`
|
||
|
SignImage string `json:"sign_image"`
|
||
|
}
|
||
|
type GetMerriageRecordReq struct {
|
||
|
ID string `json:"id" form:"id" binding:"required"`
|
||
|
}
|