wp-go/models/wp/wp_postmeta.go

17 lines
422 B
Go
Raw Normal View History

package wp
type Postmeta struct {
MetaId uint64 `db:"meta_id" json:"meta_id" form:"meta_id"`
PostId uint64 `db:"post_id" json:"post_id" form:"post_id"`
MetaKey string `db:"meta_key" json:"meta_key" form:"meta_key"`
MetaValue string `db:"meta_value" json:"meta_value" form:"meta_value"`
}
func (p Postmeta) PrimaryKey() string {
return "meta_id"
}
func (p Postmeta) Table() string {
return "wp_postmeta"
}