service/dbstruct/frontend_route.go

40 lines
1.0 KiB
Go
Raw Normal View History

2024-11-06 17:37:46 +08:00
package dbstruct
type FrontendRoute struct {
Id *int64 `json:"id" bson:"_id"` // 前端页面路由表id
RoutePath *string `json:"route_path" bson:"route_path"` // 前端页面路由地址
2024-11-08 11:17:47 +08:00
Action *string `json:"action" bson:"action"` // 跳转类型
2024-11-06 17:37:46 +08:00
Desc *string `json:"desc" bson:"desc"` // 前端页面描述
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
}
func (p *FrontendRoute) GetId() int64 {
if p == nil || p.Id == nil {
return 0
}
return *p.Id
}
func (p *FrontendRoute) GetRoutePath() string {
if p == nil || p.RoutePath == nil {
return ""
}
return *p.RoutePath
}
2024-11-08 11:17:47 +08:00
func (p *FrontendRoute) GetAction() string {
2024-11-06 17:37:46 +08:00
if p == nil || p.Action == nil {
2024-11-08 11:17:47 +08:00
return ""
2024-11-06 17:37:46 +08:00
}
return *p.Action
}
func (p *FrontendRoute) GetDesc() string {
if p == nil || p.Desc == nil {
return ""
}
return *p.Desc
}