SyncResultResponse.go 1.0 KB

1234567891011121314151617181920212223242526272829
  1. package sync_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. // 【响应结果】响应结果,同步批次信息
  6. type SyncResultResponse struct {
  7. // 【同步批次id】同步批次id
  8. Id string `json:"id"`
  9. // 【同步源】同步源
  10. SyncSource string `json:"syncSource"`
  11. // 【创建时间】创建时间
  12. CreateTime string `json:"createTime"`
  13. // 【所属平台标识】所属平台标识
  14. Platform string `json:"platform"`
  15. // 【导入总条数】导入总条数
  16. Count *int64 `json:"count"`
  17. // 【导入失败数】导入失败数
  18. FailureCount *int64 `json:"failureCount"`
  19. // 【导入类型】导入类型
  20. Type_ string `json:"type"`
  21. // 【同步结果】同步结果, doing(同步中)、done(同步完成)
  22. Status string `json:"status"`
  23. // 【应用id】应用id
  24. AppId string `json:"appId"`
  25. // 【具体人员导入信息】具体人员导入信息,当detail为true时存在
  26. Records []*common.SyncResultRecordsResponse `json:"records,omitempty"`
  27. }