40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
|
package dbstruct
|
||
|
|
||
|
type FrontendRoute struct {
|
||
|
Id *int64 `json:"id" bson:"_id"` // 前端页面路由表id
|
||
|
RoutePath *string `json:"route_path" bson:"route_path"` // 前端页面路由地址
|
||
|
Action *int64 `json:"action" bson:"action"` // 跳转类型
|
||
|
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
|
||
|
}
|
||
|
|
||
|
func (p *FrontendRoute) GetAction() int64 {
|
||
|
if p == nil || p.Action == nil {
|
||
|
return 0
|
||
|
}
|
||
|
return *p.Action
|
||
|
}
|
||
|
|
||
|
func (p *FrontendRoute) GetDesc() string {
|
||
|
if p == nil || p.Desc == nil {
|
||
|
return ""
|
||
|
}
|
||
|
return *p.Desc
|
||
|
}
|