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