ContractPressRequest.go 604 B

1234567891011121314151617181920
  1. package contract_request
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  4. )
  5. type ContractPressRequest struct {
  6. // <ext>core:true;format:string;deprecated:false</ext> 【签署节点id】签署节点id 【作用】 通过签署方id查询需催签的签署节点。
  7. ActionId *int64 `json:"actionId,omitempty"`
  8. }
  9. func (obj ContractPressRequest) GetUrl() string {
  10. return "/contract/press"
  11. }
  12. func (obj ContractPressRequest) GetHttpParameter() *http.HttpParameter {
  13. parameter := http.NewGetHttpParameter()
  14. parameter.AddParam("actionId", obj.ActionId)
  15. return parameter
  16. }