MobilesealLoginGetLoginstatusRequest.go 564 B

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