// ========================================================================== // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY. // ========================================================================== package internal import ( "github.com/gogf/gf/os/gtime" ) // FeedbackResult is the golang structure for table feedback_result. type FeedbackResult struct { Id int `orm:"Id,primary" json:"id"` // Id FeebackId int `orm:"FeebackId" json:"feebackId"` // 反馈Id ProcessById int `orm:"ProcessById" json:"processById"` // 处理人 Id ProcessByName string `orm:"ProcessByName" json:"processByName"` // 处理人名称 ProcessType int `orm:"ProcessType" json:"processType"` // 处理方式 ProcessNote string `orm:"ProcessNote" json:"processNote"` // 处理描述 CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间 UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间 DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间 }