MobilesealSignSealListRequest.go 576 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 MobilesealSignSealListRequest struct {
  7. // 【本次签署任务id】本次签署任务id
  8. SignSid string `json:"signSid"`
  9. }
  10. func (obj MobilesealSignSealListRequest) GetUrl() string {
  11. return "/mobileseal/sign/seal/list"
  12. }
  13. func (obj MobilesealSignSealListRequest) GetHttpParameter() *http.HttpParameter {
  14. parameter := http.NewPostHttpParameter()
  15. jsonBytes, _ := json.Marshal(obj)
  16. parameter.SetJsonParamer(string(jsonBytes))
  17. return parameter
  18. }