package response import "time" type SysInfoResponse struct { Id int64 `excel:"name=主键id" xorm:"pk autoincr" json:"id" ` //主键id Label string `excel:"name=系统名称" xorm:"varchar(30)" json:"label" ` //系统名称 Image string `excel:"name=背景图" xorm:"varchar(200)" json:"image" binding:"required"` //logo IsDel string `excel:"name=删除标志,format=1=代表存在,2=代表删除" xorm:"char(1)" json:"isDel" ` //删除标志(1代表存在 2代表删除) CreateBy string `excel:"name=创建者" xorm:"varchar(64)" json:"createBy" ` //创建者 CreateTime time.Time `excel:"name=创建时间" xorm:"datetime" json:"createTime" ` //创建时间 UpdateBy string `excel:"name=更新者" xorm:"varchar(64)" json:"updateBy" ` //更新者 UpdateTime time.Time `excel:"name=更新时间" xorm:"datetime" json:"updateTime" ` //更新时间 }