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