goweb-gin-demo/model/wt/request/wt_reports.go

23 lines
444 B
Go
Raw Normal View History

2021-11-04 19:39:59 +08:00
package request
import (
"goweb-gin-demo/model/common/request"
"goweb-gin-demo/model/wt"
)
type WtReportsSearch struct{
wt.WtReports
request.PageInfo
}
type WtReportsVO struct{
ID uint
UserName string `json:"userName"`
SendTo []wt.UserInfo `json:"sendTo"`
Header string `json:"header"`
Contents []wt.Contents `json:"contents"`
Pictures []wt.UploadFileJson `json:"pictures"`
Attachments []wt.UploadFileJson `json:"attachments"`
}