SealApplyDetailResponse.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package seal_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. // 【响应结果】响应结果
  6. type SealApplyDetailResponse struct {
  7. // 【用印申请id】用印申请id
  8. Id string `json:"id"`
  9. // 【用印申请所属单位名称】用印申请所属单位名称
  10. TenantName string `json:"tenantName"`
  11. // 【申请人姓名】申请人姓名
  12. ApplyerName string `json:"applyerName"`
  13. // 【申请人联系方式】申请人联系方式
  14. ApplyerContact string `json:"applyerContact"`
  15. // 【申请人成员编号】申请人成员编号
  16. ApplyerNumber string `json:"applyerNumber,omitempty"`
  17. // 【事项标题】事项标题
  18. Subject string `json:"subject"`
  19. // 【编号】编号
  20. SerialNo string `json:"serialNo,omitempty"`
  21. // 【申请次数】申请次数
  22. Count *int64 `json:"count"`
  23. // 【使用事由】使用事由
  24. Description string `json:"description"`
  25. // 【状态】状态
  26. Status string `json:"status"`
  27. // 【发起时间】发起时间
  28. CreateTime string `json:"createTime"`
  29. // 【用印信息】用印信息
  30. SealAuths []*common.SealApplyDetailSealAuthsResponse `json:"sealAuths"`
  31. // 【人脸图片】人脸图片
  32. FaceImages []*common.SealApplyDetailFaceImagesResponse `json:"faceImages"`
  33. // 【用印图片】用印图片
  34. UseImages []*common.PhysicsImg `json:"useImages"`
  35. // 【补签记录】补签记录
  36. AppendLogs []*common.SealApplyDetailAppendLogsResponse `json:"appendLogs,omitempty"`
  37. // 【自定义字段】自定义字段
  38. PhysicsCustomizeField []*common.SealApplyDetailPhysicsCustomizeFieldResponse `json:"physicsCustomizeField"`
  39. Seal *common.SealApplyDetailSealResponse `json:"seal,omitempty"`
  40. }