package models type TSwaggerControllerParameter struct { ControllerParameterId string `xorm:"not null pk comment('控制器参数ID') CHAR(18)"` ControllerId string `xorm:"not null comment('控制器ID') index CHAR(18)"` ControllerParameterName string `xorm:"not null comment('参数名称') VARCHAR(256)"` IsRequired int64 `xorm:"not null comment('是不是必须') INT(11)"` ControllerParameterType string `xorm:"not null comment('参数类型int,string') VARCHAR(16)"` ControllerParameterGetType string `xorm:"not null comment('query,formData') VARCHAR(16)"` ControllerParameterDescription string `xorm:"not null comment('参数描述') VARCHAR(255)"` }