f
This commit is contained in:
@@ -577,9 +577,9 @@ type FLXGHB4FReq struct {
|
||||
}
|
||||
|
||||
type IVYZP2Q6Req struct {
|
||||
Name string `json:"name" validate:"required,min=1,validName"`
|
||||
IDCard string `json:"id_card" validate:"required,validIDCard"`
|
||||
PdfBase64 string `json:"pdf_base64" validate:"required,validBase64PDF"`
|
||||
Name string `json:"name" validate:"required,min=1,validName"`
|
||||
IDCard string `json:"id_card" validate:"required,validIDCard"`
|
||||
AuthAuthorizeFileBase64 string `json:"auth_authorize_file_base64" validate:"required,validBase64PDF"`
|
||||
}
|
||||
|
||||
type JRZQ1W4XReq struct {
|
||||
@@ -616,8 +616,8 @@ type QYGL5A3CReq struct {
|
||||
}
|
||||
|
||||
type QYGLBH7YReq struct {
|
||||
EntName string `json:"ent_name" validate:"required,min=1,validEnterpriseName"`
|
||||
PdfBase64 string `json:"pdf_base64" validate:"required,validBase64PDF"`
|
||||
EntName string `json:"ent_name" validate:"required,min=1,validEnterpriseName"`
|
||||
AuthAuthorizeFileBase64 string `json:"auth_authorize_file_base64" validate:"required,validBase64PDF"`
|
||||
}
|
||||
|
||||
type QYGL2naoReq struct {
|
||||
|
||||
@@ -28,7 +28,7 @@ func ProcessIVYZP2Q6Request(ctx context.Context, params []byte, deps *processors
|
||||
reqParams := map[string]interface{}{
|
||||
"name": paramsDto.Name,
|
||||
"id_card": paramsDto.IDCard,
|
||||
"auth_pdf_base64": paramsDto.PdfBase64,
|
||||
"auth_pdf_base64": paramsDto.AuthAuthorizeFileBase64,
|
||||
}
|
||||
|
||||
apiPath := "/api/v1/IVYZP2Q6"
|
||||
|
||||
@@ -27,7 +27,7 @@ func ProcessQYGLBH7YRequest(ctx context.Context, params []byte, deps *processors
|
||||
|
||||
reqParams := map[string]interface{}{
|
||||
"ent_name": paramsDto.EntName,
|
||||
"auth_pdf_base64": paramsDto.PdfBase64,
|
||||
"auth_pdf_base64": paramsDto.AuthAuthorizeFileBase64,
|
||||
}
|
||||
|
||||
apiPath := "/api/v1/QYGLBH7Y"
|
||||
|
||||
Reference in New Issue
Block a user