package common
type DocumentFormDto struct {
// core:true 【文本域】文本域 【作用】 即可在文档中指定好填写文字内容的区域
TextFields []*DocumentTextFieldsDto `json:"textFields,omitempty"`
// core:true 【选择框域】选择框域 【作用】 即可在文档中设置一个勾选框,可以进行勾选。例如,在文字内容“我已阅读并同意该文件所有内容”前面增加选择框用来勾选
RadioCheckFields []RadioCheckFieldsDto `json:"radioCheckFields,omitempty"`
}