ContractListResponse.go 411 B

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