MobilesealSignFinishSignRequest.go 584 B

12345678910111213141516171819202122
  1. package others_request
  2. import (
  3. "encoding/json"
  4. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  5. )
  6. type MobilesealSignFinishSignRequest struct {
  7. // 【本次签署任务id】本次签署任务id
  8. SignSid string `json:"signSid"`
  9. }
  10. func (obj MobilesealSignFinishSignRequest) GetUrl() string {
  11. return "/mobileseal/sign/finish/sign"
  12. }
  13. func (obj MobilesealSignFinishSignRequest) GetHttpParameter() *http.HttpParameter {
  14. parameter := http.NewPostHttpParameter()
  15. jsonBytes, _ := json.Marshal(obj)
  16. parameter.SetJsonParamer(string(jsonBytes))
  17. return parameter
  18. }