V2ContractListResponse.go 362 B

123456789101112
  1. package v2contract_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. // 【查询返回结果】查询返回结果
  6. type V2ContractListResponse struct {
  7. // 【电子签约文件总数】电子签约文件总数
  8. TotalCount string `json:"totalCount"`
  9. List []*common.V2Contract `json:"list"`
  10. }