MobilesealDesGetDecryptdataRequest.go 548 B

1234567891011121314151617181920
  1. package others_request
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  4. )
  5. type MobilesealDesGetDecryptdataRequest struct {
  6. // 【本次加密任务id】本次加密任务id
  7. DesSid string `json:"desSid,omitempty"`
  8. }
  9. func (obj MobilesealDesGetDecryptdataRequest) GetUrl() string {
  10. return "/mobileseal/des/get/decryptData"
  11. }
  12. func (obj MobilesealDesGetDecryptdataRequest) GetHttpParameter() *http.HttpParameter {
  13. parameter := http.NewGetHttpParameter()
  14. parameter.AddParam("desSid", obj.DesSid)
  15. return parameter
  16. }