package others_request import ( "encoding/json" "git.sxidc.com/student-physical-examination/contract_lock_sdk/http" ) type MobilesealSignFinishSignRequest struct { // 【本次签署任务id】本次签署任务id SignSid string `json:"signSid"` } func (obj MobilesealSignFinishSignRequest) GetUrl() string { return "/mobileseal/sign/finish/sign" } func (obj MobilesealSignFinishSignRequest) GetHttpParameter() *http.HttpParameter { parameter := http.NewPostHttpParameter() jsonBytes, _ := json.Marshal(obj) parameter.SetJsonParamer(string(jsonBytes)) return parameter }