2025-03-18 10:13:57 +08:00
|
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
const TableNameResourcePps = "resource_pps"
|
|
|
|
|
|
|
|
|
|
// ResourcePps mapped from table <resource_pps>
|
|
|
|
|
type ResourcePps struct {
|
2025-04-12 18:03:44 +08:00
|
|
|
ID int32 `gorm:"column:id;primaryKey;autoIncrement:true;comment:ID" json:"id"` // ID
|
|
|
|
|
ResourceID int32 `gorm:"column:resource_id;not null;comment:套餐ID" json:"resource_id"` // 套餐ID
|
2025-03-18 10:13:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TableName ResourcePps's table name
|
|
|
|
|
func (*ResourcePps) TableName() string {
|
|
|
|
|
return TableNameResourcePps
|
|
|
|
|
}
|