Documentation ¶
Index ¶
- type ApiController
- type VersionController
- func (c *VersionController) DeleteDev()
- func (c *VersionController) GetDev()
- func (c *VersionController) GetHome()
- func (c *VersionController) GetPro()
- func (c *VersionController) GetTest()
- func (c *VersionController) PostDev()
- func (c *VersionController) PostPro()
- func (c *VersionController) PostTest()
- type ViewController
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApiController ¶
type ApiController struct { Ctx iris.Context ToolsService service.ToolsService DBVersionService service.DbVersionService //当使用单例控制器时,由开发人员负责访问安全,所有客户端共享相同的控制器实例。 //注意任何控制器的方法,是每个客户端,但结构的字段可以在多个客户端共享(如果是结构) //没有任何依赖于的动态struct字段依赖项 //并且所有字段的值都不为零,在这种情况下我们使用uint64,它不是零(即使我们没有设置它手动易于理解的原因)因为它的值为&{0} //以上所有都声明了一个Singleton,请注意,您不必编写一行代码来执行此操作,Iris足够聪明。 //见`Get` Visits uint64 //当前请求 Session //它的初始化是由我们添加到路由的依赖函数发生的。 Session *sessions.Session Logger log.LoggerInterface }
type VersionController ¶
type VersionController struct { Ctx iris.Context DBVersionService service.DbVersionService //当使用单例控制器时,由开发人员负责访问安全,所有客户端共享相同的控制器实例。 //注意任何控制器的方法,是每个客户端,但结构的字段可以在多个客户端共享(如果是结构) //没有任何依赖于的动态struct字段依赖项 //并且所有字段的值都不为零,在这种情况下我们使用uint64,它不是零(即使我们没有设置它手动易于理解的原因)因为它的值为&{0} //以上所有都声明了一个Singleton,请注意,您不必编写一行代码来执行此操作,Iris足够聪明。 //见`Get` Visits uint64 //当前请求 Session //它的初始化是由我们添加到路由的依赖函数发生的。 Session *sessions.Session Logger log.LoggerInterface }
func (*VersionController) GetHome ¶
func (c *VersionController) GetHome()
数据库版本管理主页 访问/tools/view/home
type ViewController ¶
type ViewController struct { Ctx iris.Context //MapService service.MapService //当使用单例控制器时,由开发人员负责访问安全,所有客户端共享相同的控制器实例。 //注意任何控制器的方法,是每个客户端,但结构的字段可以在多个客户端共享(如果是结构) //没有任何依赖于的动态struct字段依赖项 //并且所有字段的值都不为零,在这种情况下我们使用uint64,它不是零(即使我们没有设置它手动易于理解的原因)因为它的值为&{0} //以上所有都声明了一个Singleton,请注意,您不必编写一行代码来执行此操作,Iris足够聪明。 //见`Get` Visits uint64 }
视图控制器
func (*ViewController) GetJavaentity ¶
func (c *ViewController) GetJavaentity()
生成java实体类页面 访问/tools/view/javaentity
Click to show internal directories.
Click to hide internal directories.