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.
12 lines
733 B
12 lines
733 B
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)"`
|
|
}
|