git-subtree-dir: server git-subtree-mainline:c4e617ada7git-subtree-split:e64421295f
13 lines
396 B
Go
13 lines
396 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type PlanReview struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
PlanId int64 `orm:"plan_id" json:"plan_id"`
|
|
UserId int64 `orm:"user_id" json:"user_id"`
|
|
Action string `orm:"action" json:"action"`
|
|
Note string `orm:"note" json:"note"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
}
|