package identity_request import ( "encoding/json" "git.sxidc.com/student-physical-examination/contract_lock_sdk/http" ) type IdentityAuthQuerybindRequest struct { // core:true 【用户唯一标识】用户唯一标识 BizId string `json:"bizId"` } func (obj IdentityAuthQuerybindRequest) GetUrl() string { return "/identity/auth/query-bind" } func (obj IdentityAuthQuerybindRequest) GetHttpParameter() *http.HttpParameter { parameter := http.NewPostHttpParameter() jsonBytes, _ := json.Marshal(obj) parameter.SetJsonParamer(string(jsonBytes)) return parameter }