ContractrelationQueryRequest.go 660 B

1234567891011121314151617181920
  1. package contract_request
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  4. )
  5. type ContractrelationQueryRequest struct {
  6. // <ext>core:true;format:string;deprecated:false</ext> 【电子签约文件id】电子签约文件id 【作用】 查询需要获取已关联文件的电子签约文件
  7. ContractId *int64 `json:"contractId,omitempty"`
  8. }
  9. func (obj ContractrelationQueryRequest) GetUrl() string {
  10. return "/contractrelation/query"
  11. }
  12. func (obj ContractrelationQueryRequest) GetHttpParameter() *http.HttpParameter {
  13. parameter := http.NewGetHttpParameter()
  14. parameter.AddParam("contractId", obj.ContractId)
  15. return parameter
  16. }