f
This commit is contained in:
@@ -254,6 +254,10 @@ var requestProcessors = map[string]func(*ApiRequestService, []byte) ([]byte, err
|
||||
"QYGL5F6A": (*ApiRequestService).ProcessQYGL5F6ARequest,
|
||||
"JRZQACAB": (*ApiRequestService).ProcessJRZQACABRequest,
|
||||
"JRZQ0B6Y": (*ApiRequestService).ProcessJRZQ0B6YRequest,
|
||||
// 新增司法涉诉类接口
|
||||
"QYGL66SL": (*ApiRequestService).ProcessQYGL66SLRequest,
|
||||
"FLXG3A9B": (*ApiRequestService).ProcessFLXG3A9BRequest,
|
||||
"QYGL2S0W": (*ApiRequestService).ProcessQYGL2S0WRequest,
|
||||
}
|
||||
|
||||
// PreprocessRequestApi 调用指定的请求处理函数
|
||||
@@ -1475,6 +1479,21 @@ func (a *ApiRequestService) ProcessJRZQ0B6YRequest(params []byte) ([]byte, error
|
||||
return a.processVerifyPassThrough(params, "JRZQ0B6Y")
|
||||
}
|
||||
|
||||
// QYGL66SL 企业司法涉诉(简版)
|
||||
func (a *ApiRequestService) ProcessQYGL66SLRequest(params []byte) ([]byte, error) {
|
||||
return a.processVerifyPassThrough(params, "QYGL66SL")
|
||||
}
|
||||
|
||||
// FLXG3A9B 限高被执行人
|
||||
func (a *ApiRequestService) ProcessFLXG3A9BRequest(params []byte) ([]byte, error) {
|
||||
return a.processVerifyPassThrough(params, "FLXG3A9B")
|
||||
}
|
||||
|
||||
// QYGL2S0W 失信被执行人
|
||||
func (a *ApiRequestService) ProcessQYGL2S0WRequest(params []byte) ([]byte, error) {
|
||||
return a.processVerifyPassThrough(params, "QYGL2S0W")
|
||||
}
|
||||
|
||||
// buildVehicleBody 从 params 中取 required 与 optional 键,仅非空才写入 body
|
||||
func buildVehicleBody(params []byte, required, optional []string) map[string]interface{} {
|
||||
body := make(map[string]interface{})
|
||||
|
||||
Reference in New Issue
Block a user