package common // 用印流程模板信息 type TemplateResponse struct { // 【模板ID】模板ID Id string `json:"id"` // 【模板名称】模板名称 Title string `json:"title"` // 【模板类型】模板类型 HTML(不含参数的html模板),HTML_FORM(包含参数的html模板),WORD(不含参数的Word模板),WORD_FORM(包含参数的Word模板),PDF(不含参数的Pdf模板),PDF_FORM(包含参数的Pdf模板) TemplateType string `json:"templateType"` // 【模板状态】模板状态 Status *int64 `json:"status"` // 【创建时间】创建时间 CreateTime string `json:"createTime"` // 【更新时间】更新时间 UpdateTime string `json:"updateTime"` UsableRange *UsableRange `json:"usableRange,omitempty"` // 【模板参数列表】模板参数列表 Parameters []*DocParamResponse `json:"parameters,omitempty"` // 【模板标签】模板标签 Tags []*TemplateTagBean `json:"tags,omitempty"` AdminRange *AuthorityRange `json:"adminRange,omitempty"` ViewRange *AuthorityRange `json:"viewRange,omitempty"` // 【共享范围】共享范围 ShareRanges []*ShareRangeResponse `json:"shareRanges,omitempty"` }