You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dsMin/dsAutoCode/models/t_swagger_controller.go

10 lines
538 B

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)"`
}