SignResponsibilityContent.go 1.4 KB

12345678910111213
  1. package common
  2. type SignResponsibilityContent struct {
  3. // 【须知内容】须知内容 【传参】 最大长度:5000(包含)。
  4. Content string `json:"content,omitempty"`
  5. // 【须知字体格式】须知字体格式 【传参】 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);不传值默认为:SONG_TI(宋体);可输入自定义字体。 2、自定义字体需在电子签章管理后台-文件字体设置中维护后,在此处传入对应的字体名称。
  6. FontStyle string `json:"fontStyle,omitempty"`
  7. // 【须知字体大小】须知字体大小 【传参】 最小值:1(包含),最大值24(包含);不传值默认为:12。
  8. FontSize *int64 `json:"fontSize,omitempty"`
  9. // 【须知字体颜色】须知字体颜色 【传参】 取值范围:WHITE(白色), LIGHT_GRAY(淡灰), GRAY(灰色)、 DARK_GRAY(深灰), BLACK(黑色), RED(红色), PINK(粉色), ORANGE(橘色), YELLOW(黄色), GREEN(绿色),MAGENTA(洋红), CYAN(青色), BLUE(蓝色);不传值默认为:BLACK(黑色)。
  10. FontColor string `json:"fontColor,omitempty"`
  11. }