ContractBatchRecall.go 290 B

123456789
  1. package common
  2. type ContractBatchRecall struct {
  3. // 【电子签约文件id】电子签约文件id
  4. ContractId *int64 `json:"contractId,omitempty"`
  5. // 【状态】状态 WAITING(等待)、COMPLETE(完成)、FAILURE(失败)
  6. RecallStatus string `json:"recallStatus,omitempty"`
  7. }