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.
10 lines
476 B
10 lines
476 B
package models
|
|
|
|
type TProtoStructParameter struct {
|
|
StructParameterId string `xorm:"not null pk comment('参数ID') CHAR(18)"`
|
|
StructParameterName string `xorm:"not null comment('参数名称') VARCHAR(256)"`
|
|
StructParameterType string `xorm:"not null comment('参数类型') VARCHAR(255)"`
|
|
StructId string `xorm:"not null comment('结构体ID') index CHAR(18)"`
|
|
IsRepeate int64 `xorm:"not null default 0 comment('是否是数组') INT(255)"`
|
|
}
|