diff --git a/erp/template.go b/erp/template.go index 6b335a3..12c51cd 100644 --- a/erp/template.go +++ b/erp/template.go @@ -29,6 +29,7 @@ type TemplateItem struct { Path string `json:"path"` Sort int64 `json:"sort"` PdfConfig string `json:"pdfConfig"` + FileName string `json:"fileName"` IsOpen int64 `json:"isOpen"` CreatedStaffId int64 `json:"createdStaffId"` CreatedAt *time.Time `json:"createdAt"` @@ -55,6 +56,7 @@ type TemplateAdd struct { Path string // 模板文件地址 Sort int64 // 排序 PdfConfig string // pdf配置 + FileName string // 文件名 } // Add @TITLE 添加 @@ -75,6 +77,7 @@ type TemplateInfo struct { Path string `json:"path"` Sort int64 `json:"sort"` PdfConfig string `json:"pdfConfig"` + FileName string `json:"fileName"` IsOpen int64 `json:"isOpen"` CreatedStaffId int64 `json:"createdStaffId"` CreatedAt *time.Time `json:"createdAt"`