| 123456789101112131415161718192021222324252627 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // Feedback is the golang structure for table feedback.
- type Feedback struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- Type string `orm:"Type" json:"type"` // 反馈类型
- Status int `orm:"Status" json:"status"` // 反馈状态 1 未处理 2 已处理
- Content string `orm:"Content" json:"content"` // 反馈内容
- CurrentProcessorId int `orm:"CurrentProcessorId" json:"currentProcessorId"` // 当前处理人 Id
- CreatedById int `orm:"CreatedById" json:"createdById"` // 创建者 Id
- CreatedByName string `orm:"CreatedByName" json:"createdByName"` // 创建者用户名
- CreatedByMobile string `orm:"CreatedByMobile" json:"createdByMobile"` // 创建者联系方式
- CreatedByEmail string `orm:"CreatedByEmail" json:"createdByEmail"` // 创建者邮箱
- CreatedByDeptId int `orm:"CreatedByDeptId" json:"createdByDeptId"` // 创建者部门 Id
- CreatedByDeptName string `orm:"CreatedByDeptName" json:"createdByDeptName"` // 创建者部门名称
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- }
|