123456789101112131415161718 |
- package models
- type MenuPasture struct {
- Id int64 `xorm:"id"`
- PastureId int64 `xorm:"pastureid"`
- IsGroups int32 `xorm:"isgroups"`
- }
- func (m *MenuPasture) TableName() string {
- return "menu_pasture"
- }
- func NewMenuPasture(pastureId int64) *MenuPasture {
- return &MenuPasture{
- PastureId: pastureId,
- IsGroups: 0,
- }
- }
|