2021-11-04 21:45:07 +08:00
|
|
|
package request
|
|
|
|
|
|
|
|
import (
|
|
|
|
"goweb-gin-demo/model/common/request"
|
|
|
|
"goweb-gin-demo/model/wt"
|
|
|
|
)
|
|
|
|
|
2021-11-08 15:12:15 +08:00
|
|
|
type WtTemplateSearch struct {
|
2021-11-04 21:45:07 +08:00
|
|
|
wt.WtReports
|
|
|
|
request.PageInfo
|
|
|
|
}
|
|
|
|
|
2021-11-08 15:12:15 +08:00
|
|
|
type WtTemplateRes struct {
|
|
|
|
ID uint `json:"id" form:"id"`
|
|
|
|
UserName string `json:"userName"`
|
|
|
|
Header string `json:"header"`
|
2021-11-04 21:45:07 +08:00
|
|
|
Contents []wt.Contents `json:"contents"`
|
|
|
|
}
|