V2ContractSignbylegalpersonFormsRequest.go 732 B

1234567891011
  1. package common
  2. type V2ContractSignbylegalpersonFormsRequest struct {
  3. // <ext>core:true;format:string</ext> 【签署文档id】签署文档id 【作用】 查找需要填写表单域的签署文档
  4. DocumentId *int64 `json:"documentId"`
  5. // <ext>core:true</ext> 【文本域】文本域 【作用】 在文档中指定好的表单域中填写内容
  6. TextFields []*LittleTextFieldsDto `json:"textFields"`
  7. // 【选择框域列表】选择框域列表 【作用】 在文档中找到设置的勾选框,进行勾选。例如,在文字内容“我已阅读并同意该文件所有内容”前面增加选择框用来勾选
  8. RadioCheckFields []*V2ContractSignbylegalpersonFormsRadioCheckFieldsRequest `json:"radioCheckFields"`
  9. }