package common type ResDocument struct { // 【签署文档id】签署文档id Id *int64 `json:"id,omitempty"` // 【签署文档名称】签署文档名称 Title string `json:"title,omitempty"` // 【签署文档页数】签署文档页数 Pages *int64 `json:"pages,omitempty"` // 【签署文档大小】签署文档大小 Size *int64 `json:"size,omitempty"` // 【签署文档类型】签署文档类型 Type_ string `json:"type,omitempty"` // 【电子签约文件id】电子签约文件id BusinessId *int64 `json:"businessId,omitempty"` // 【创建时间】创建时间 格式yyyy-MM-dd HH:mm:ss CreateTime string `json:"createTime,omitempty"` // 【防伪码】防伪码 AntifakeCode string `json:"antifakeCode,omitempty"` Parameters *ResDocumentParam `json:"parameters,omitempty"` // 【文件用途】文件用途 NORMAL(签署文件)、TERMINATION(作废声明)、OFFLINE(线下签署文件)、 SPONSOR_FILE(内部附件)、ATTACHMENT(普通附件)、EVIDENCE(存证报告) Usage string `json:"usage,omitempty"` }