SealApplyMulitiplebycategoryResponse.go 460 B

123456789101112131415
  1. package seal_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. // 【响应结果】响应结果
  6. type SealApplyMulitiplebycategoryResponse struct {
  7. // 【用印申请id】用印申请id
  8. Id string `json:"id"`
  9. // 【用印信息】用印信息
  10. SealAuths []*common.SealApplyMulitiplebycategorySealAuthsResponse `json:"sealAuths"`
  11. // 【用印申请状态】用印申请状态
  12. Status string `json:"status"`
  13. }