mirror of
https://shylinux.com/x/operation
synced 2025-04-25 18:26:25 +08:00
16 lines
384 B
Go
16 lines
384 B
Go
package dashboard
|
|
|
|
import (
|
|
"shylinux.com/x/community/src/gonganxitong"
|
|
"shylinux.com/x/operation/src/operation"
|
|
)
|
|
|
|
type Portal struct {
|
|
operation.Portal
|
|
placeCreate string `name:"placeCreate city_name* company_name* dashboard_name* dashboard_type*:select" role:"void"`
|
|
}
|
|
|
|
func init() {
|
|
gonganxitong.PortalCmd(Portal{Portal: operation.NewPortal(userDashboard{}, dashboard{})})
|
|
}
|