| 1234567891011121314151617 |
- package common
- type LittleTextFieldsDto struct {
- // <ext>core:true;format:string</ext> 【文本域id】文本域id 【作用】 传入唯一的id,定位到需填写内容的表单域
- Id string `json:"id"`
- // 【文本域内容】文本域内容 【传参】 表单域文字内容
- Content string `json:"content,omitempty"`
- // <ext>core:true</ext> 【文本域文字大小】文本域文字大小 【传值】 最小值:1(包含);不传值默认为:12。
- FontSize string `json:"fontSize,omitempty"`
- // <ext>core:true</ext> 【文本域字体格式】文本域字体格式 【传参】 1、取值范围:SONG_TI(宋体),KAI_TI(楷体),HEI_TI(黑体),FANG_SONG(仿宋),WEIRUAN_YAHEI(微软雅黑),Arial(Arial),Georgia(Georgia),Impact(Impact),Tahoma(Tahoma),Times New Roman(Times New Roman),Verdana(Verdana);不传值默认为:设置表单域时的字体。;可输入自定义字体。 2、自定义字体需在电子签章管理后台-文件字体设置中维护后,在此处传入对应的字体名称。 【特殊说明】 当传入字体名称不存在时,将使用默认的宋体
- Font string `json:"font,omitempty"`
- // <ext>core:true</ext> 【文本域字体颜色】文本域字体颜色 【传参】 取值范围:WHITE(白色), LIGHT_GRAY(淡灰), GRAY(灰色)、 DARK_GRAY(深灰), BLACK(黑色), RED(红色), PINK(粉色), ORANGE(橘色), YELLOW(黄色), GREEN(绿色),MAGENTA(洋红), CYAN(青色), BLUE(蓝色);不传值默认为:设置表单域时的字体颜色。
- FontColor string `json:"fontColor,omitempty"`
- // <ext>core:true</ext> 【新增文字是否覆盖历史内容 】新增文字是否覆盖历史内容 【作用】 本次新增的表单域文字内容,是否覆盖之前表单域中填充的文字 【传参】 取值范围:true(覆盖),false(不覆盖);不传值默认为:true(覆盖)。
- AppendContent *bool `json:"appendContent,omitempty"`
- }
|