This commit is contained in:
守护自己的云 2024-12-04 10:04:26 +08:00
parent 28a85b528c
commit c64766a44c

View File

@ -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"`