Files
slogan/server/styleagent/model/entity/member_plan.go
T
2026-08-17 13:19:15 +08:00

15 lines
571 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type MemberPlan struct {
Id int64 `orm:"id" json:"id"`
Name string `orm:"name" json:"name"`
PriceFen int64 `orm:"price_fen" json:"price_fen"`
DurationDays int `orm:"duration_days" json:"duration_days"`
Features string `orm:"features" json:"features"` // 权益 JSON 数组字符串
Sort int `orm:"sort" json:"sort"`
Status int `orm:"status" json:"status"`
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
}