ContractQueryResponse.go 417 B

123456789101112
  1. package contract_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. type ContractQueryResponse struct {
  6. // 【相关电子签约文件列表】相关电子签约文件列表
  7. Result []*common.ContractQueryResultResponse `json:"result,omitempty"`
  8. // 【相关电子签约文件总数】相关电子签约文件总数
  9. TotalCount *int64 `json:"totalCount,omitempty"`
  10. }