You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.6 KiB
41 lines
1.6 KiB
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// Wish is the golang structure of table wish for DAO operations like Where/Data.
|
|
type Wish struct {
|
|
g.Meta `orm:"table:wish, do:true"`
|
|
Id interface{} //
|
|
Jwcode interface{} // 用户标识
|
|
Title interface{} // 心愿名称
|
|
Content interface{} // 心愿内容
|
|
Image interface{} // 图片,多张图片用json格式保存
|
|
Type interface{} // 1精网2弘历软件3大财神4锦囊5L-2产品
|
|
Status interface{} // 0隐藏1待处理2排期中3在开发4已上线
|
|
Support interface{} // 点赞数
|
|
Opposition interface{} // 反对数
|
|
Comment interface{} // 评论数
|
|
Fee interface{} // 打赏当午券数
|
|
FeeNum interface{} // 打赏人数
|
|
Vote interface{} // 总票数
|
|
Zan interface{} // 点赞数
|
|
See interface{} // 观看数
|
|
Class interface{} // 1心愿2公告
|
|
Label interface{} // 1软件bug2产品需求3市场建议
|
|
Delete interface{} // 0正常1删除2隐藏
|
|
ManagerJwcode interface{} // 负责人的jwcode
|
|
Order interface{} // 排序
|
|
Coding interface{} // 是否经过开发
|
|
DeadLine *gtime.Time // 上线日期
|
|
Language interface{} //
|
|
SubjectId interface{} // 话题ID
|
|
CreatedAt interface{} //
|
|
UpdatedAt interface{} //
|
|
}
|