- package contract_response
- import (
- "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
- )
- // 【查询返回结果】查询返回结果
- type ContractListResponse struct {
- // 【电子签约文件总数】电子签约文件总数
- TotalCount *int64 `json:"totalCount"`
- // 【电子签约文件列表】电子签约文件列表
- ContractList []*common.Contract `json:"contractList"`
- }
|