DocumentKeywordDetectResponse.go 378 B

123456789101112
  1. package document_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. type DocumentKeywordDetectResponse struct {
  6. // 【是否存在关键词】是否存在关键词
  7. Detected *bool `json:"detected"`
  8. // 【是否存在关键词】是否存在关键词
  9. Keywords []*common.DocumentKeywordDetectKeywordsResponse `json:"keywords"`
  10. }