ContractQueryPositionmetricsResponse.go 968 B

12345678910111213141516171819
  1. package contract_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. // 【电子签约签署位置信息】电子签约签署位置信息
  6. type ContractQueryPositionmetricsResponse struct {
  7. // 【电子签约正文坐标位置总数】电子签约正文坐标位置总数
  8. CoordinateRect *int64 `json:"coordinateRect"`
  9. // 【电子签约正文关键字位置总数】电子签约正文关键字位置总数
  10. KeywordRect *int64 `json:"keywordRect"`
  11. // 【电子签约骑缝位置总数】电子签约骑缝位置总数
  12. AcrossRect *int64 `json:"acrossRect"`
  13. // 【多份文档签署位置信息】多份文档签署位置信息
  14. DocumentLocations []*common.ContractQueryPositionmetricsDocumentLocationsResponse `json:"documentLocations"`
  15. // 【签署方签署位置信息】签署方签署位置信息
  16. SignatoryLocations []*common.ContractQueryPositionmetricsSignatoryLocationsResponse `json:"signatoryLocations"`
  17. }