CrossborderContractDetailMergeFileInfoResponse.go 479 B

12345678910
  1. package common
  2. // 【文件合并信息】文件合并信息 用印流程支持配置多文件填参完毕后合并为一个文档进行签署,此处返回该合并文档合并信息
  3. type CrossborderContractDetailMergeFileInfoResponse struct {
  4. // 【合并后的文档id集合】合并后的文档id集合
  5. MergeDocId *int64 `json:"mergeDocId,omitempty"`
  6. // 【合并前的文档id集合】合并前的文档id集合
  7. OriginDocIds []int64 `json:"originDocIds,omitempty"`
  8. }