package contract_request import ( "git.sxidc.com/student-physical-examination/contract_lock_sdk/http" ) type ContractRecallRequest struct { // core:true;format:string;deprecated:false 【电子签约文件id】电子签约文件id 【作用】 查询需要撤回的电子签约文件 【传参】 电子签约文件id和第三方业务系统文件id必传其一,均传入以电子签约文件id为准。 ContractId *int64 `json:"contractId,omitempty"` // core:true;format:string;deprecated:false 【第三方业务系统文件id】第三方业务系统文件id 【作用】 查询需要撤回的电子签约文件 【传参】 电子签约文件id和第三方业务系统文件id必传其一,均传入以电子签约文件id为准。 BizId string `json:"bizId,omitempty"` // core:true;format:string;deprecated:false 【撤回原因】撤回原因 【传参】 最大长度:500字符。 Reason string `json:"reason,omitempty"` } func (obj ContractRecallRequest) GetUrl() string { return "/contract/recall" } func (obj ContractRecallRequest) GetHttpParameter() *http.HttpParameter { parameter := http.NewPostHttpParameter() parameter.AddParam("contractId", obj.ContractId) parameter.AddParam("bizId", obj.BizId) parameter.AddParam("reason", obj.Reason) return parameter }