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

18 lines
383 B
Go
Raw Normal View History

2021-11-04 21:45:07 +08:00
package response
import (
"goweb-gin-demo/global"
"goweb-gin-demo/model/wt"
)
type WtReportsResult struct{
global.GLOBAL_MODEL
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"`
}