V2ContractListbybizidRequest.go 1.3 KB

1234567891011121314151617181920212223242526
  1. package v2contract_request
  2. import (
  3. "encoding/json"
  4. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  5. )
  6. type V2ContractListbybizidRequest struct {
  7. // <ext>core:true;format:string;deprecated:false</ext> 【第三方业务系统文件id】第三方业务系统文件id 【作用】 业务系统中唯一的文件id,用来查询所关联的所有电子签约文件,以列表形式返回
  8. BizId string `json:"bizId"`
  9. // <ext>core:true;format:string;deprecated:false</ext> 【查询开始位置】查询开始位置 【作用】 指定从哪条数据开始查询 【传参】 最小值:0(包含),最大值:无限制;不传值默认为:0。
  10. SelectOffset *int64 `json:"selectOffset,omitempty"`
  11. // <ext>core:true;format:string;deprecated:false</ext> 【查询限制条数】查询限制条数 【作用】 限制本次查询的最大条数 【传参】 最小值:0(包含),最大值:无限制;不传值默认为:100。
  12. SelectLimit *int64 `json:"selectLimit,omitempty"`
  13. }
  14. func (obj V2ContractListbybizidRequest) GetUrl() string {
  15. return "/v2/contract/listbybizid"
  16. }
  17. func (obj V2ContractListbybizidRequest) GetHttpParameter() *http.HttpParameter {
  18. parameter := http.NewPostHttpParameter()
  19. jsonBytes, _ := json.Marshal(obj)
  20. parameter.SetJsonParamer(string(jsonBytes))
  21. return parameter
  22. }