2021-10-29 14:02:40 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
// UserPlan 用户的套餐
|
|
|
|
|
type UserPlan struct {
|
|
|
|
|
Id uint64 `field:"id"` // ID
|
|
|
|
|
UserId uint32 `field:"userId"` // 用户ID
|
|
|
|
|
PlanId uint32 `field:"planId"` // 套餐ID
|
2022-03-22 21:45:07 +08:00
|
|
|
IsOn bool `field:"isOn"` // 是否启用
|
2021-11-28 20:11:36 +08:00
|
|
|
Name string `field:"name"` // 名称
|
2021-10-29 14:02:40 +08:00
|
|
|
DayTo string `field:"dayTo"` // 结束日期
|
|
|
|
|
State uint8 `field:"state"` // 状态
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UserPlanOperator struct {
|
|
|
|
|
Id interface{} // ID
|
|
|
|
|
UserId interface{} // 用户ID
|
|
|
|
|
PlanId interface{} // 套餐ID
|
|
|
|
|
IsOn interface{} // 是否启用
|
2021-11-28 20:11:36 +08:00
|
|
|
Name interface{} // 名称
|
2021-10-29 14:02:40 +08:00
|
|
|
DayTo interface{} // 结束日期
|
|
|
|
|
State interface{} // 状态
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewUserPlanOperator() *UserPlanOperator {
|
|
|
|
|
return &UserPlanOperator{}
|
|
|
|
|
}
|