AnnotationStampers.go 651 B

12345678910111213141516
  1. package common
  2. // 【批注内容】批注内容,各签署节点的操作人对文件添加的批注内容
  3. type AnnotationStampers struct {
  4. // 【批注内容】批注内容
  5. Annotation string `json:"annotation"`
  6. // 【批注内容的类型】批注内容的类型 TEXT(文字批注),HAND_WRITE(手写批注)
  7. Type_ string `json:"type"`
  8. // 【批注内容宽度】批注内容宽度,单位为mm
  9. Width *int64 `json:"width"`
  10. // 【批注内容高度】批注内容高度,单位为mm
  11. Hight *int64 `json:"hight"`
  12. // 【批注内容所在签署文档id】批注内容所在签署文档id
  13. DocumentId *float64 `json:"documentId"`
  14. }