|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import ( "github.com/gogf/gf/v2/frame/g" )
// Notice is the golang structure of table notice for DAO operations like Where/Data.
type Notice struct { g.Meta `orm:"table:notice, do:true"` Id interface{} //
Type interface{} // 1进度修改2评论3点赞
WishId interface{} // 心愿ID
CommentId interface{} //
Jwcode interface{} // 操作人
NoticeJwcode interface{} // 通知人
State interface{} // 0新通知1已看
WishState interface{} // 把心愿改成的状态
CreatedAt interface{} //
}
|