package models type TSwaggerController struct { ControllerId string `xorm:"not null pk comment('控制器ID') CHAR(18)"` ControllerName string `xorm:"not null comment('控制器名称') VARCHAR(255)"` InterfaceName string `xorm:"not null comment('rpc proto中的interface name,用于扩展web controller,手动指定interfacename,默认和controllername一致') VARCHAR(255)"` HttpType string `xorm:"not null comment('get,post') VARCHAR(255)"` Description string `xorm:"not null comment('接口描述') VARCHAR(255)"` }