// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // Wish is the golang structure for table wish. type Wish struct { Id uint `json:"id" orm:"id" description:""` // Jwcode int `json:"jwcode" orm:"jwcode" description:"用户标识"` // 用户标识 Title string `json:"title" orm:"title" description:"心愿名称"` // 心愿名称 Content string `json:"content" orm:"content" description:"心愿内容"` // 心愿内容 Image string `json:"image" orm:"image" description:"图片,多张图片用json格式保存"` // 图片,多张图片用json格式保存 Type int `json:"type" orm:"type" description:"1精网2弘历软件3大财神4锦囊5L-2产品"` // 1精网2弘历软件3大财神4锦囊5L-2产品 Status int `json:"status" orm:"status" description:"0隐藏1待处理2排期中3在开发4已上线"` // 0隐藏1待处理2排期中3在开发4已上线 Support int `json:"support" orm:"support" description:"点赞数"` // 点赞数 Opposition int `json:"opposition" orm:"opposition" description:"反对数"` // 反对数 Comment int `json:"comment" orm:"comment" description:"评论数"` // 评论数 Fee float64 `json:"fee" orm:"fee" description:"打赏当午券数"` // 打赏当午券数 FeeNum int `json:"feeNum" orm:"fee_num" description:"打赏人数"` // 打赏人数 Vote int `json:"vote" orm:"vote" description:"总票数"` // 总票数 Zan int `json:"zan" orm:"zan" description:"点赞数"` // 点赞数 See int `json:"see" orm:"see" description:"观看数"` // 观看数 Class int `json:"class" orm:"class" description:"1心愿2公告"` // 1心愿2公告 Label uint `json:"label" orm:"label" description:"1软件bug2产品需求3市场建议"` // 1软件bug2产品需求3市场建议 Delete int `json:"delete" orm:"delete" description:"0正常1删除2隐藏"` // 0正常1删除2隐藏 ManagerJwcode int `json:"managerJwcode" orm:"manager_jwcode" description:"负责人的jwcode"` // 负责人的jwcode Order uint `json:"order" orm:"order" description:"排序"` // 排序 Coding int `json:"coding" orm:"coding" description:"是否经过开发"` // 是否经过开发 DeadLine *gtime.Time `json:"deadLine" orm:"dead_line" description:"上线日期"` // 上线日期 Language string `json:"language" orm:"language" description:""` // SubjectId int `json:"subjectId" orm:"subject_id" description:"话题ID"` // 话题ID CreatedAt int `json:"createdAt" orm:"created_at" description:""` // UpdatedAt int `json:"updatedAt" orm:"updated_at" description:""` // }