| 12345678910111213141516171819 |
- package contract_response
- import (
- "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
- )
- // 【电子签约签署位置信息】电子签约签署位置信息
- type ContractQueryPositionmetricsResponse struct {
- // 【电子签约正文坐标位置总数】电子签约正文坐标位置总数
- CoordinateRect *int64 `json:"coordinateRect"`
- // 【电子签约正文关键字位置总数】电子签约正文关键字位置总数
- KeywordRect *int64 `json:"keywordRect"`
- // 【电子签约骑缝位置总数】电子签约骑缝位置总数
- AcrossRect *int64 `json:"acrossRect"`
- // 【多份文档签署位置信息】多份文档签署位置信息
- DocumentLocations []*common.ContractQueryPositionmetricsDocumentLocationsResponse `json:"documentLocations"`
- // 【签署方签署位置信息】签署方签署位置信息
- SignatoryLocations []*common.ContractQueryPositionmetricsSignatoryLocationsResponse `json:"signatoryLocations"`
- }
|